Neon Commerce Pricing Sheet API

The Pricing Sheet API from Neon Commerce — 1 operation(s) for pricing sheet.

Operations 1

GET /pricing-sheet Get your active pricing sheet. If you don't have a custom pricing sheet, the default Neon pricing sheet is returned. #

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/neon-commerce-pricing-sheet-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

neon-commerce-pricing-sheet-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Checkout Pricing Sheet API
  description: 'The Checkout API is used to create, and get data about, standalone checkouts, and to register callbacks used during the flow. Only use this API if you don''t have a Neon storefront integration; Neon storefronts automatically create checkouts for you.

    Once the user confirms their checkout, the checkout object is transitioned to a Purchase object. Use the purchase ID sent in the `purchase.completed` webhook, or the ID included in the query parameters attached to the checkout success URL, to fetch data about the finalized checkout, including updated taxes and totals.

    '
  version: '1'
servers:
- url: https://api.neonpay.com
security:
- EnvironmentApiKey: []
tags:
- name: Pricing Sheet
paths:
  /pricing-sheet:
    get:
      summary: Get your active pricing sheet. If you don't have a custom pricing sheet, the default Neon pricing sheet is returned.
      operationId: getActivePricingSheet
      parameters:
      - in: query
        allowReserved: true
        name: onlyEnabledCountries
        schema:
          type: boolean
        description: If true, only countries enabled for this environment are returned in the countries field, and the tiers field is filtered to those enabled countries
      responses:
        '200':
          description: Pricing sheet successfully returned
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                    description: The name for this pricing sheet
                  tiers:
                    type: object
                    additionalProperties:
                      type: object
                      additionalProperties:
                        type: number
                  countries:
                    type: object
                    description: Countries present in the pricing sheet, with their enabled status and currency
                    additionalProperties:
                      type: object
                      properties:
                        isEnabled:
                          type: boolean
                          description: Whether this country is enabled for the environment
                        currency:
                          type: string
                          description: The currency code for this country
        '400':
          $ref: '#/components/responses/BadRequest'
      tags:
      - Pricing Sheet
components:
  responses:
    BadRequest:
      description: Response for bad requests. Should note what in the request was invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/APIError'
  schemas:
    APIError:
      type: object
      required:
      - code
      - message
      properties:
        statusCode:
          type: number
          description: The HTTP response code
          example: 400
        code:
          type: string
          description: An error code that is static and can be used for programmatic error handling
          example: INVALID_ITEM_ERROR
        message:
          type: string
          description: A human readable description of the error
          example: Item missing both price tier and price.
        errors:
          type: array
          description: A list of more detailed errors about specific errors for specific entities
          items:
            $ref: '#/components/schemas/ErrorDetail'
    ErrorDetail:
      type: object
      required:
      - source
      - message
      properties:
        source:
          type: string
          description: Specific entity that caused this error
          example: items.0
        message:
          type: string
          description: Human readable description of the error for this entity (defined in `source`)
          example: Item missing both price tier and price.
        context:
          type: object
          description: Additional context about the error
          additionalProperties: true
  securitySchemes:
    EnvironmentApiKey:
      type: apiKey
      in: header
      name: X-Api-Key
      description: 'Your Environment API key, scoped to a particular environment. Sandbox keys are prefixed with `pk_sandbox_`;

        production keys are prefixed with `pk_`. Find your keys in the Neon dashboard.

        '
    ClientToken:
      type: apiKey
      in: header
      name: X-Client-Token
      description: 'A short-lived client token obtained from the `/client/token` endpoint, used for

        client-side requests to the Neon APIs.

        '