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

# List the private-capacity rate cards (bearer twin)

> Every private credential with the rates that price it, the organisation fallback card, the provider defaults, and how many private clusters nothing prices yet. Bearer-PAT twin of the browser route of the same name under /org; the console's session cookie is not accepted here and the browser route answers a token with a login redirect.



## OpenAPI

````yaml https://platform.ankra.app/openapi.json get /api/v1/org/cloud-cost/rate-cards
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://platform.ankra.app
security: []
paths:
  /api/v1/org/cloud-cost/rate-cards:
    get:
      tags:
        - Cost
        - cli
      summary: List the private-capacity rate cards (bearer twin)
      description: >-
        Every private credential with the rates that price it, the organisation
        fallback card, the provider defaults, and how many private clusters
        nothing prices yet. Bearer-PAT twin of the browser route of the same
        name under /org; the console's session cookie is not accepted here and
        the browser route answers a token with a login redirect.
      operationId: rate_cards_api_v1_org_cloud_cost_get
      parameters:
        - description: PAT organisation override.
          in: header
          name: x-ankra-organisation-id
          required: false
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RateCardsResponse'
          description: Successful response
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: >-
            Missing or malformed Authorization header, or business validation
            error
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: Unknown, expired, or revoked API token
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: >-
            Token may not use this surface (MCP-scoped token or service account
            restriction)
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Request validation error
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: Internal server error
      security:
        - BearerAuth: []
components:
  schemas:
    RateCardsResponse:
      properties:
        credentials:
          items:
            $ref: '#/components/schemas/CredentialRateCard'
          type: array
        currency:
          type: string
        organisation_card:
          anyOf:
            - $ref: '#/components/schemas/RateCardRates'
            - type: 'null'
        provider_defaults:
          additionalProperties:
            $ref: '#/components/schemas/RateCardRates'
          type: object
        unpriced_cluster_count:
          type: integer
      required:
        - currency
        - organisation_card
        - provider_defaults
        - credentials
        - unpriced_cluster_count
      title: RateCardsResponse
      type: object
    ContractDetailError:
      example:
        detail: Cluster not found
      properties:
        detail:
          oneOf:
            - type: string
            - additionalProperties: true
              properties: {}
              type: object
      required:
        - detail
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    CredentialRateCard:
      properties:
        cluster_count:
          type: integer
        credential_id:
          format: uuid
          type: string
        credential_name:
          type: string
        currency:
          type: string
        memory_gb_monthly_amount:
          type: string
        monthly_cost_estimate_cents:
          anyOf:
            - type: integer
            - type: 'null'
        provider:
          type: string
        source:
          type: string
        storage_gb_monthly_amount:
          type: string
        vcpu_monthly_amount:
          type: string
      required:
        - credential_id
        - credential_name
        - provider
        - source
        - currency
        - vcpu_monthly_amount
        - memory_gb_monthly_amount
        - storage_gb_monthly_amount
        - cluster_count
        - monthly_cost_estimate_cents
      title: CredentialRateCard
      type: object
    RateCardRates:
      properties:
        currency:
          type: string
        memory_gb_monthly_amount:
          type: string
        storage_gb_monthly_amount:
          type: string
        vcpu_monthly_amount:
          type: string
      required:
        - currency
        - vcpu_monthly_amount
        - memory_gb_monthly_amount
        - storage_gb_monthly_amount
      title: RateCardRates
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: PAT
      scheme: bearer
      type: http

````