GET
/
plans
/
{slug}
Retrieve a plan by slug
curl --request GET \
  --url https://api.simiz.io/v1/plans/{slug}
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "Standard",
  "slug": "standard",
  "description": "Tout inclus — 2% par transaction, sans frais cachés",
  "tier": 0,
  "monthlyPrice": 0,
  "yearlyPrice": 0,
  "currency": "XAF",
  "transactionFeePercent": 0.02,
  "maxProjects": 3,
  "maxTeamMembers": 5,
  "features": {
    "webhooks": true,
    "refunds": true,
    "recurring": true,
    "qrCodes": true,
    "customBranding": true,
    "prioritySupport": true,
    "apiRateLimit": 123
  },
  "isActive": true,
  "isPublic": true
}

Path Parameters

slug
string
required
Example:

"standard"

Response

Plan details

id
string<uuid>
name
string
Example:

"Standard"

slug
string
Example:

"standard"

description
string
Example:

"Tout inclus — 2% par transaction, sans frais cachés"

tier
integer

Plan tier level (0 = Standard, 2 = Enterprise)

Example:

0

monthlyPrice
number

Monthly price in XAF (0 for Standard plan)

Example:

0

yearlyPrice
number

Yearly price in XAF (0 for Standard plan)

Example:

0

currency
string
Example:

"XAF"

transactionFeePercent
number

Transaction fee as a decimal (0.02 = 2%)

Example:

0.02

maxProjects
integer

Maximum number of projects (-1 for unlimited)

Example:

3

maxTeamMembers
integer

Maximum team members (-1 for unlimited)

Example:

5

features
object

Feature flags and limits

isActive
boolean
isPublic
boolean