Charthop query API

The query API from Charthop — 3 operation(s) for query.

Operations 5

GET /v1/org/{orgId}/query Get a list of query tokens #
POST /v1/org/{orgId}/query Create a live query token #
DELETE /v1/org/{orgId}/query/{queryToken} Expire a previously created live query immediately #
GET /v1/org/{orgId}/query/{queryToken} Return the results of a previously created live query #
GET /v1/org/{orgId}/query/{queryToken}/iqy Download an IQY file for a previously created live query #

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/charthop-query-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

charthop-query-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: REST API for ChartHop
  version: V1.0.0
  title: ChartHop access Query API
  contact:
    name: ChartHop
    url: https://www.charthop.com
    email: support@charthop.com
servers:
- url: https://localhost
- url: http://localhost
tags:
- name: query
paths:
  /v1/org/{orgId}/query:
    get:
      tags:
      - query
      summary: Get a list of query tokens
      operationId: listQueryTokens
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug
        required: true
        schema:
          type: string
      - name: from
        in: query
        description: Action id to start paginating from
        required: false
        schema:
          type: string
      - name: limit
        in: query
        description: Number of results to return
        required: false
        schema:
          type: integer
          format: int32
      - name: returnAccess
        in: query
        description: 'Return access information -- pass a list of actions to check, for example: create,update,delete'
        required: false
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultsQueryToken'
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
    post:
      tags:
      - query
      summary: Create a live query token
      operationId: createQuery
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueryToken'
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateQueryToken'
        required: true
  /v1/org/{orgId}/query/{queryToken}:
    delete:
      tags:
      - query
      summary: Expire a previously created live query immediately
      operationId: expire
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: queryToken
        in: path
        description: Query token (either id or token string)
        required: true
        schema:
          type: string
      responses:
        '202':
          description: snapshot currently building
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
    get:
      tags:
      - query
      summary: Return the results of a previously created live query
      operationId: query
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: queryToken
        in: path
        description: Query token
        required: true
        schema:
          type: string
      - name: format
        in: query
        description: Data format to use; default is json, can also use json-extended or json-readable
        required: false
        schema:
          type: string
      - name: splitColumns
        in: query
        description: Whether to split complex-datatype columns
        required: false
        schema:
          type: boolean
      responses:
        '202':
          description: snapshot currently building
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
  /v1/org/{orgId}/query/{queryToken}/iqy:
    get:
      tags:
      - query
      summary: Download an IQY file for a previously created live query
      operationId: downloadIqyFile
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: queryToken
        in: path
        description: Query token
        required: true
        schema:
          type: string
      - name: format
        in: query
        description: Data format to use; default is html-display, can also use html-export
        required: false
        schema:
          type: string
      - name: splitColumns
        in: query
        description: Whether to split complex-datatype columns
        required: false
        schema:
          type: boolean
      responses:
        '202':
          description: snapshot currently building
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
components:
  schemas:
    CreateQueryToken:
      type: object
      required:
      - type
      - params
      properties:
        type:
          type: string
          description: query type
        params:
          type: object
          description: query params
          additionalProperties:
            type: object
    ResultsAccess:
      type: object
      required:
      - allowed
      properties:
        ids:
          type: array
          uniqueItems: true
          items:
            type: string
            example: 588f7ee98f138b19220041a7
        allowed:
          type: array
          uniqueItems: true
          items:
            $ref: '#/components/schemas/AccessAction'
    ResultsQueryToken:
      type: object
      required:
      - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/QueryToken'
        next:
          type: string
        access:
          type: array
          items:
            $ref: '#/components/schemas/ResultsAccess'
    QueryToken:
      type: object
      required:
      - id
      - token
      - orgId
      - userId
      - type
      - params
      properties:
        id:
          type: string
          description: globally unique id for query token
          example: 588f7ee98f138b19220041a7
        token:
          type: string
          description: globally unique random token string
        orgId:
          type: string
          description: id of org
          example: 588f7ee98f138b19220041a7
        userId:
          type: string
          description: id of user
          example: 588f7ee98f138b19220041a7
        label:
          type: string
          description: query details on data that is being synced
        type:
          type: string
          description: query type
        path:
          type: string
          description: query path (deprecated)
        params:
          type: object
          description: query params
          additionalProperties:
            type: object
        accessCount:
          type: integer
          format: int64
          description: total number of uses
        createAt:
          type: string
          description: created timestamp
          example: '2016-11-16T13:40:47Z'
        expireAt:
          type: string
          description: expire timestamp
          example: '2016-11-16T13:40:47Z'
        activeAt:
          type: string
          description: last active timestamp
          example: '2016-11-16T13:40:47Z'
    AccessAction:
      type: object
      required:
      - action
      properties:
        action:
          type: string
        fields:
          type: array
          uniqueItems: true
          items:
            type: string
        types:
          type: array
          uniqueItems: true
          items:
            type: string