Timescale Pricing API

The Pricing API from Timescale — 1 operation(s) for pricing.

Operations 1

GET /pricing Get pricing #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/timescale-pricing-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

timescale-pricing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ghost Pricing API
  version: 0.1.0
  description: Ghost database management API
servers:
- url: https://api.ghost.build/v0
  description: Production
security:
- BearerAuth: []
tags:
- name: Pricing
paths:
  /pricing:
    get:
      operationId: getPricing
      summary: Get pricing
      description: 'Returns current pricing.


        This endpoint is unauthenticated.

        '
      security: []
      responses:
        '200':
          description: Pricing
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Pricing'
        default:
          $ref: '#/components/responses/Error'
      tags:
      - Pricing
components:
  schemas:
    ErrorCode:
      type: string
      description: 'Machine-readable error code identifying a specific, client-actionable

        error condition. Clients can match on this to react to specific errors

        without parsing the human-readable message. Errors without a recognized

        code omit this field.

        '
      enum:
      - no_payment_method
      - compute_limit_exceeded
    ComputePrice:
      type: object
      description: Compute price for one size.
      required:
      - size
      - milli_cpu
      - memory_gib
      - price_per_hour
      - price_per_month
      properties:
        size:
          $ref: '#/components/schemas/DatabaseSize'
        milli_cpu:
          type: integer
          description: 'CPU allocation in millicores (1000 = 1 vCPU).

            '
        memory_gib:
          type: integer
          description: Memory allocation in GiB.
        price_per_hour:
          type: number
          format: double
          description: Price per hour while the database is running.
        price_per_month:
          type: number
          format: double
          description: Price per month while the database is running.
    StandardPricing:
      type: object
      description: 'Pricing for standard (non-dedicated) databases, which share a

        space-wide compute allowance.

        '
      required:
      - compute
      properties:
        compute:
          $ref: '#/components/schemas/StandardComputePrice'
    StoragePrice:
      type: object
      description: Storage pricing.
      required:
      - price_per_gib_hour
      - price_per_gib_month
      - included_gib_per_database
      properties:
        price_per_gib_hour:
          type: number
          format: double
          description: Price per GiB per hour of provisioned storage above the included amount.
        price_per_gib_month:
          type: number
          format: double
          description: Price per GiB per month of provisioned storage above the included amount.
        included_gib_per_database:
          type: integer
          description: 'GiB of storage included per database at no additional charge. Only

            storage above this amount is billed at `price_per_gib_hour`.

            '
    DedicatedPricing:
      type: object
      description: Pricing for dedicated databases.
      required:
      - compute
      - storage
      properties:
        compute:
          type: array
          description: Per-size compute pricing, ordered smallest to largest.
          items:
            $ref: '#/components/schemas/ComputePrice'
        storage:
          $ref: '#/components/schemas/StoragePrice'
    DatabaseSize:
      type: string
      description: Compute size for dedicated databases. Each step up allocates proportionally more vCPU and RAM.
      enum:
      - 1x
      - 2x
      - 4x
      - 8x
    Pricing:
      type: object
      description: 'Pricing data grouped by category.

        '
      required:
      - dedicated
      - standard
      properties:
        dedicated:
          $ref: '#/components/schemas/DedicatedPricing'
        standard:
          $ref: '#/components/schemas/StandardPricing'
    Error:
      type: object
      description: Standard error response.
      required:
      - message
      properties:
        message:
          type: string
          description: Human-readable error message.
        code:
          $ref: '#/components/schemas/ErrorCode'
    StandardComputePrice:
      type: object
      description: 'Pricing for standard (shared) compute used beyond the free monthly

        allowance.

        '
      required:
      - price_per_hour
      - included_compute_hours_per_month
      properties:
        price_per_hour:
          type: number
          format: double
          description: 'Price per compute-hour used beyond the included monthly allowance,

            metered in 15-minute increments.

            '
        included_compute_hours_per_month:
          type: integer
          description: 'Compute-hours included per month at no additional charge, shared

            across all standard databases in the space. Only usage above this

            amount is billed at `price_per_hour`.

            '
  responses:
    Error:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 'User JWT or API key token (e.g. `gt_...`) sent as `Authorization: Bearer <token>`.'