> ## Documentation Index
> Fetch the complete documentation index at: https://docs.falkordb.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# List service plans

> List the FalkorDB service plans you can subscribe to.

Lists the service offerings available to you. Each offering describes a service plan (product tier) that you can subscribe to. Use this endpoint to look up the `serviceId` and `productTierId` values required by [Create subscription](/api-reference/account/subscriptions/create).

## Authorization

<ParamField header="Cookie" type="string" required>
  Session cookie set by [Sign in](/api-reference/authentication/signin): `omnistrate_token=<jwt>`.
</ParamField>

## Query parameters

<ParamField query="environmentType" type="string">
  Environment type to filter by, for example `PROD`.
</ParamField>

<ParamField query="orgId" type="string">
  ID of the organization that owns the service.
</ParamField>

<ParamField query="visibility" type="string">
  Visibility of the service offering to filter by.
</ParamField>

## Response

<ResponseField name="serviceIds" type="string[]" required>
  IDs of the services available to you.
</ResponseField>

<ResponseField name="services" type="object[]">
  The service offerings.

  <Expandable title="service properties">
    <ResponseField name="serviceId" type="string" required>
      ID of the service. Pass this as `serviceId` when subscribing.
    </ResponseField>

    <ResponseField name="serviceName" type="string" required>
      Name of the service.
    </ResponseField>

    <ResponseField name="serviceDescription" type="string" required>
      Description of the service.
    </ResponseField>

    <ResponseField name="serviceProviderId" type="string" required>
      ID of the service provider.
    </ResponseField>

    <ResponseField name="serviceURLKey" type="string" required>
      URL key of the service, used in resource instance paths.
    </ResponseField>

    <ResponseField name="isDeprecated" type="boolean" required>
      Whether the service offering is deprecated.
    </ResponseField>

    <ResponseField name="createdAt" type="string" required>
      Time the service was created.
    </ResponseField>

    <ResponseField name="offerings" type="object[]" required>
      The plans offered by this service. Each entry includes `productTierID`, `productTierName`, `productTierType`, `productTierURLKey`, `productTierVersion`, `serviceModelType`, `cloudProviders`, `maxNumberOfInstances`, and `AutoApproveSubscription`.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="nextPageToken" type="string">
  Token to use to fetch the next page of results.
</ResponseField>

## Errors

See [Error](/api-reference/schemas#error) for the error response shape.
