Skip to main content
GET
/
plans
/
{id}
Get a plan
curl --request GET \
  --url https://api.alguna.io/plans/{id} \
  --header 'Alguna-Version: <alguna-version>' \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "2026-04-01T10:00:00Z",
  "currency": "USD",
  "id": "pln_01H1VECT",
  "name": "Enterprise Plan",
  "updated_at": "2026-04-01T12:30:00Z",
  "description": "Full-featured enterprise plan"
}

Documentation Index

Fetch the complete documentation index at: https://alguna.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token.

Headers

Alguna-Version
enum<string>
required
Available options:
2026-04-01

Path Parameters

id
string
required

Unique identifier for the plan

Response

Success

created_at
string<date-time>
required

Timestamp when the plan was created

Example:

"2026-04-01T10:00:00Z"

currency
string
required

The currency in which the plan is billed

Example:

"USD"

id
string
required

Unique identifier for the plan

Example:

"pln_01H1VECT"

name
string
required

The name of the plan

Example:

"Enterprise Plan"

updated_at
string<date-time>
required

Timestamp when the plan was last updated

Example:

"2026-04-01T12:30:00Z"

description
string | null

A brief description of the plan

Example:

"Full-featured enterprise plan"