Charthop search API

The search API from Charthop — 1 operation(s) for search.

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-search-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-search-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  description: REST API for ChartHop
  version: V1.0.0
  title: ChartHop access search API
  contact:
    name: ChartHop
    url: https://www.charthop.com
    email: support@charthop.com
host: localhost
schemes:
- https
- http
consumes:
- application/json
produces:
- application/json
tags:
- name: search
paths:
  /v1/org/{orgId}/search:
    get:
      tags:
      - search
      summary: Return people, job, group, field, goal, and other entity data for a particular org that match a provided search string
      operationId: searchOrgData
      consumes:
      - application/json
      produces:
      - application/json
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        type: string
      - name: q
        in: query
        description: Query search term
        required: false
        type: string
      - name: entityTypes
        in: query
        description: Entity types
        required: false
        type: string
      - name: limit
        in: query
        description: Limit
        required: false
        type: integer
        format: int32
      - name: includeFormer
        in: query
        description: Include former users or persons
        required: false
        type: boolean
      - name: date
        in: query
        description: Date
        required: false
        type: string
        format: date
      - name: scenarioId
        in: query
        description: Scenario Id
        required: false
        type: string
      - name: canAccess
        in: query
        description: entity action pairs that can be accessed
        required: false
        type: string
      - name: returnEntityBody
        in: query
        description: Include full entity body in results
        required: false
        type: boolean
      - name: terminatedWithoutBackfill
        in: query
        description: Filter to only terminated jobs without backfill
        required: false
        type: boolean
      - name: jobState
        in: query
        description: Filter jobs by state (OPEN or FILLED)
        required: false
        type: string
      - name: filter
        in: query
        description: CQL filter expression applied to job results (currently only the jobs entity type honors this)
        required: false
        type: string
      responses:
        '200':
          description: successful operation
          schema:
            type: object
        '400':
          description: bad request
        '404':
          description: not found