Browse the API reference

Get Available Graph Tiers

get/v1/graphs/tiers

Part of Graphs.

Authentication

Authenticate in any one of these ways — not all of them:

  • API key in the X-API-Key header.
  • Bearer token in the Authorization header.

Query parameters

NameTypeDescription
include_disabledoptionalbooleanInclude Disabled

Default: false

Example request

curl
curl -X GET "https://api.robosystems.ai/v1/graphs/tiers" \
  -H "X-API-Key: $ROBOSYSTEMS_API_KEY"

Responses

200 Successful Response

FieldTypeDescription
tiersrequiredGraphTierInfo[]

List of available tiers

GraphTierInfo fields
FieldTypeDescription
tierrequiredstring

Tier identifier

namerequiredstring

Tier name

display_namerequiredstring

Display name for UI

descriptionrequiredstring

Tier description

backendrequiredstring

Database backend identifier

enabledrequiredboolean

Whether tier is available

max_subgraphsrequiredinteger

Maximum subgraphs allowed

monthly_creditsrequiredinteger

Monthly AI credits

api_rate_multiplierrequirednumber

API rate limit multiplier

monthly_priceoptionalnumber

Monthly price in USD

featuresrequiredstring[]

List of tier features

instancerequiredGraphTierInstance

Instance specifications

GraphTierInstance fields
FieldTypeDescription
typerequiredstring

Instance type identifier

memory_mbrequiredinteger

LadybugDB memory budget for the whole instance in megabytes (below physical RAM after OS overhead; not a per-graph allocation)

is_multitenantrequiredboolean

Whether this tier shares infrastructure with other graphs

limitsrequiredGraphTierLimits

Resource limits

GraphTierLimits fields
FieldTypeDescription
monthly_creditsrequiredinteger

Monthly credit allocation

max_subgraphsrequiredinteger

Maximum subgraphs (null for unlimited)

copy_operationsrequiredGraphTierCopyOperations

Copy operation limits

backuprequiredGraphTierBackup

Backup configuration

StatusMeaning
400Invalid request
401Authentication required
403Access denied
422Validation Error
429Rate limit exceeded
500Internal server error