Cello Token API

The Token API from Cello — 1 operation(s) for token.

Operations 1

POST /token

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/cello-token-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

cello-token-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cello Events Token API
  description: API for Cello referral platform
  license:
    name: MIT
  version: 1.0.0
servers:
- url: https://api.cello.so
- url: https://api.sandbox.cello.so
security:
- bearerAuth: []
tags:
- name: Token
paths:
  /token:
    post:
      description: Obtain accessToken & refreshToken using your accessKeyId and secretAccessKey, or obtain a new accessToken using a refreshToken.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/TokenRequest'
              - $ref: '#/components/schemas/RefreshTokenRequest'
            examples:
              accessKey:
                summary: Exchange accessKeyId and secretAccessKey for tokens
                value:
                  accessKeyId: <accessKeyId>
                  secretAccessKey: <secretAccessKey>
              refreshToken:
                summary: Exchange refreshToken for a new accessToken
                value:
                  refreshToken: <refreshToken>
      responses:
        '201':
          description: Tokens issued
          content:
            application/json:
              schema:
                oneOf:
                - $ref: '#/components/schemas/TokenResponse'
                - $ref: '#/components/schemas/RefreshTokenResponse'
              examples:
                accessKey:
                  summary: Exchange accessKeyId and secretAccessKey for tokens
                  value:
                    accessToken: <accessToken>
                    refreshToken: <refreshToken>
                    expiresIn: 18000
                    refreshTokenExpiresIn: 432000
                refreshToken:
                  summary: Exchange refreshToken for a new accessToken
                  value:
                    accessToken: <accessToken>
                    expiresIn: 18000
        '400':
          description: Invalid credentials
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
      tags:
      - Token
components:
  schemas:
    TokenRequest:
      type: object
      description: Use this schema to exchange accessKeyId and secretAccessKey for tokens.
      required:
      - accessKeyId
      - secretAccessKey
      properties:
        accessKeyId:
          type: string
        secretAccessKey:
          type: string
    RefreshTokenResponse:
      type: object
      properties:
        accessToken:
          type: string
        expiresIn:
          type: integer
      required:
      - accessToken
      - expiresIn
      description: Returned when exchanging a refreshToken for a new accessToken.
    Error:
      type: object
      required:
      - message
      properties:
        message:
          type: string
    RefreshTokenRequest:
      type: object
      description: Use this schema to exchange a refreshToken for a new accessToken.
      required:
      - refreshToken
      properties:
        refreshToken:
          type: string
    TokenResponse:
      type: object
      properties:
        accessToken:
          type: string
        refreshToken:
          type: string
        expiresIn:
          type: integer
        refreshTokenExpiresIn:
          type: integer
      required:
      - accessToken
      - refreshToken
      - expiresIn
      - refreshTokenExpiresIn
      description: Returned when exchanging accessKeyId and secretAccessKey for tokens.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
x-mint.mcp.enabled: true