Charthop well-known API

The well-known API from Charthop — 6 operation(s) for well-known.

Operations 6

GET /.well-known/oauth-authorization-server OAuth authorization server metadata (RFC 8414) #
GET /.well-known/oauth-authorization-server/mcp/{agent} OAuth authorization server metadata for an org-less agent MCP server (RFC 8414) #
GET /.well-known/oauth-authorization-server/mcp/{agent}/{orgId} OAuth authorization server metadata for an agent MCP server (RFC 8414) #
GET /.well-known/oauth-protected-resource/mcp/{agent} OAuth protected resource metadata for an org-less agent MCP server (RFC 9728) #
GET /.well-known/oauth-protected-resource/mcp/{agent}/{orgId} OAuth protected resource metadata for an agent MCP server (RFC 9728) #
GET /.well-known/security.txt security.txt (RFC 9116) #

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-well-known-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-well-known-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: REST API for ChartHop
  version: V1.0.0
  title: ChartHop access Well Known API
  contact:
    name: ChartHop
    url: https://www.charthop.com
    email: support@charthop.com
servers:
- url: https://localhost
- url: http://localhost
tags:
- name: well-known
paths:
  /.well-known/oauth-authorization-server:
    get:
      tags:
      - well-known
      summary: OAuth authorization server metadata (RFC 8414)
      operationId: authorizationServerMetadata
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
  /.well-known/oauth-authorization-server/mcp/{agent}:
    get:
      tags:
      - well-known
      summary: OAuth authorization server metadata for an org-less agent MCP server (RFC 8414)
      operationId: mcpAuthorizationServerMetadataNoOrg
      parameters:
      - name: agent
        in: path
        description: Agent app name
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
  /.well-known/oauth-authorization-server/mcp/{agent}/{orgId}:
    get:
      tags:
      - well-known
      summary: OAuth authorization server metadata for an agent MCP server (RFC 8414)
      operationId: mcpAuthorizationServerMetadata
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: agent
        in: path
        description: Agent app name
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
  /.well-known/oauth-protected-resource/mcp/{agent}:
    get:
      tags:
      - well-known
      summary: OAuth protected resource metadata for an org-less agent MCP server (RFC 9728)
      operationId: mcpProtectedResourceMetadataNoOrg
      parameters:
      - name: agent
        in: path
        description: Agent app name
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
  /.well-known/oauth-protected-resource/mcp/{agent}/{orgId}:
    get:
      tags:
      - well-known
      summary: OAuth protected resource metadata for an agent MCP server (RFC 9728)
      operationId: mcpProtectedResourceMetadata
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: agent
        in: path
        description: Agent app name
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
  /.well-known/security.txt:
    get:
      tags:
      - well-known
      summary: security.txt (RFC 9116)
      operationId: getSecurityTxt
      responses:
        '200':
          description: successful operation