Charthop category API

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

Operations 5

GET /v1/org/{orgId}/category Return categories that are available to the organization #
POST /v1/org/{orgId}/category Create a category #
GET /v1/org/{orgId}/category/{categoryId} Return a particular category by id #
PATCH /v1/org/{orgId}/category/{categoryId} Update an existing category #
DELETE /v1/org/{orgId}/category/{categoryId} Delete a category #

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-category-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-category-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: REST API for ChartHop
  version: V1.0.0
  title: ChartHop access Category API
  contact:
    name: ChartHop
    url: https://www.charthop.com
    email: support@charthop.com
servers:
- url: https://localhost
- url: http://localhost
tags:
- name: category
paths:
  /v1/org/{orgId}/category:
    get:
      tags:
      - category
      summary: Return categories that are available to the organization
      operationId: getCategories
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: type
        in: query
        description: (Optional) Return only built-in or custom categories
        required: false
        schema:
          type: string
      - name: unsorted
        in: query
        description: (Optional) Return categories array unsorted
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResultsCategory'
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
        '500':
          description: Not Implemented
    post:
      tags:
      - category
      summary: Create a category
      operationId: createCategory
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      responses:
        '201':
          description: category created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Category'
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
        '500':
          description: Not Implemented
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCategory'
        description: Category data to create
        required: true
  /v1/org/{orgId}/category/{categoryId}:
    get:
      tags:
      - category
      summary: Return a particular category by id
      operationId: getCategory
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: categoryId
        in: path
        description: Category id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Category'
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
        '500':
          description: Not Implemented
    patch:
      tags:
      - category
      summary: Update an existing category
      operationId: updateCategory
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: categoryId
        in: path
        description: Category id
        required: true
        schema:
          type: string
      responses:
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
        '500':
          description: Not Implemented
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCategory'
        description: Category data to update
        required: true
    delete:
      tags:
      - category
      summary: Delete a category
      operationId: deleteCategory
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: categoryId
        in: path
        description: Category id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: category deleted
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
        '500':
          description: Not Implemented
components:
  schemas:
    Attribution:
      type: object
      properties:
        principalUserId:
          type: string
          example: 588f7ee98f138b19220041a7
        agentUserIds:
          type: array
          items:
            type: string
            example: 588f7ee98f138b19220041a7
        eventId:
          type: string
          example: 588f7ee98f138b19220041a7
        aiChatId:
          type: string
          example: 588f7ee98f138b19220041a7
        aiToolUseId:
          type: string
        channel:
          type: string
          enum:
          - WEB
          - MOBILE
          - SLACK
          - TEAMS
          - MCP
    UpdateCategory:
      type: object
      properties:
        label:
          type: string
          description: human-readable label of category
          example: Performance
          minItems: 3
          maxItems: 80
        fieldIds:
          type: array
          description: set of field ids included in this category
          uniqueItems: true
          items:
            type: string
            example: 588f7ee98f138b19220041a7
        nativeFields:
          type: array
          description: set of native field names included in this category
          uniqueItems: true
          items:
            type: string
    CreateCategory:
      type: object
      required:
      - label
      properties:
        orgId:
          type: string
          description: parent organization id (empty if built-in)
          example: 588f7ee98f138b19220041a7
        label:
          type: string
          description: human-readable label of category
          example: Performance
          minItems: 3
          maxItems: 80
        fieldIds:
          type: array
          description: set of field ids included in this category
          uniqueItems: true
          items:
            type: string
            example: 588f7ee98f138b19220041a7
        nativeFields:
          type: array
          description: set of native field names included in this category
          uniqueItems: true
          items:
            type: string
    ResultsCategory:
      type: object
      required:
      - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Category'
        next:
          type: string
    Category:
      type: object
      required:
      - id
      - label
      properties:
        id:
          type: string
          description: globally unique id
          example: 588f7ee98f138b19220041a7
        orgId:
          type: string
          description: parent organization id (empty if built-in)
          example: 588f7ee98f138b19220041a7
        label:
          type: string
          description: human-readable label of category
          example: Performance
          minItems: 3
          maxItems: 80
        fieldIds:
          type: array
          description: set of field ids included in this category
          uniqueItems: true
          items:
            type: string
            example: 588f7ee98f138b19220041a7
        nativeFields:
          type: array
          description: set of native field names included in this category
          uniqueItems: true
          items:
            type: string
        createId:
          type: string
          description: created by user id
          example: 588f7ee98f138b19220041a7
        createBehalfId:
          type: string
          description: created on behalf of user id
          example: 588f7ee98f138b19220041a7
        createAttribution:
          $ref: '#/components/schemas/Attribution'
        createAt:
          type: string
          description: created timestamp
          example: '2017-01-24T13:57:52Z'
        updateId:
          type: string
          description: last updated by user id
          example: 588f7ee98f138b19220041a7
        updateBehalfId:
          type: string
          description: last updated on behalf of user id
          example: 588f7ee98f138b19220041a7
        updateAttribution:
          $ref: '#/components/schemas/Attribution'
        updateAt:
          type: string
          description: last updated timestamp
          example: '2017-01-24T13:57:52Z'
        deleteId:
          type: string
          description: deleted by user id
          example: 588f7ee98f138b19220041a7
        deleteBehalfId:
          type: string
          description: deleted on behalf of user id
          example: 588f7ee98f138b19220041a7
        deleteAttribution:
          $ref: '#/components/schemas/Attribution'
        deleteAt:
          type: string
          description: deleted timestamp
          example: '2017-01-24T13:57:52Z'