Charthop access API

The access API from Charthop — 2 operation(s) for access.

Operations 2

GET /v1/org/{orgId}/access/entity/{type} Return the appropriate actions that can be performed on an entity or set of entities #
GET /v1/org/{orgId}/access/ui Return the appropriate actions that can be performed on the ui. #

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-access-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

charthop-access-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: REST API for ChartHop
  version: V1.0.0
  title: ChartHop Access API
  contact:
    name: ChartHop
    url: https://www.charthop.com
    email: support@charthop.com
servers:
- url: https://localhost
- url: http://localhost
tags:
- name: access
paths:
  /v1/org/{orgId}/access/entity/{type}:
    get:
      tags:
      - access
      summary: Return the appropriate actions that can be performed on an entity or set of entities
      operationId: getEntityAccess
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: type
        in: path
        description: Entity type
        required: true
        schema:
          type: string
      - name: id
        in: query
        description: Entity ids
        required: false
        schema:
          type: string
      - name: action
        in: query
        description: Actions, defaults to update,delete
        required: false
        schema:
          type: string
      - name: fields
        in: query
        description: Fields to check, defaults to all fields
        required: false
        schema:
          type: string
      - name: date
        in: query
        description: Date, defaults to today
        required: false
        schema:
          type: string
          format: date
      - name: scenarioId
        in: query
        description: Scenario id, defaults to primary
        required: false
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessResponse'
        '401':
          description: unauthorized
        '404':
          description: not found
  /v1/org/{orgId}/access/ui:
    get:
      tags:
      - access
      summary: Return the appropriate actions that can be performed on the ui.
      operationId: getUiAccess
      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:
                type: array
                uniqueItems: true
                items:
                  type: string
        '401':
          description: unauthorized
        '404':
          description: not found
components:
  schemas:
    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
    AccessResponse:
      type: object
      properties:
        access:
          type: array
          items:
            $ref: '#/components/schemas/ResultsAccess'
    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'