Charthop exchange-rate API

The exchange-rate API from Charthop — 5 operation(s) for exchange-rate.

Operations 7

GET /v1/org/{orgId}/exchange-rate/{date} Return the exchange rates on a particular date #
PATCH /v1/org/{orgId}/exchange-rate/{date} Update the USD-based exchange rates for a particular date. Must be the first of a month. #
DELETE /v1/org/{orgId}/exchange-rate/{date} Delete a custom exchange rate on a particular date #
GET /v1/org/{orgId}/exchange-rate/{date}/custom Return org custom exchange rates #
POST /v1/org/{orgId}/exchange-rate/{date}/custom/bulkupdate Bulk update custom currency rates in org custom exchange rates #
GET /v1/org/{orgId}/exchange-rate/{date}/global Return the global exchange rates based on USD for a particular date #
GET /v1/org/{orgId}/exchange-rate/{date}/history Return org custom exchange rates #

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-exchange-rate-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-exchange-rate-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: REST API for ChartHop
  version: V1.0.0
  title: ChartHop access Exchange Rate API
  contact:
    name: ChartHop
    url: https://www.charthop.com
    email: support@charthop.com
servers:
- url: https://localhost
- url: http://localhost
tags:
- name: exchange-rate
paths:
  /v1/org/{orgId}/exchange-rate/{date}:
    get:
      tags:
      - exchange-rate
      summary: Return the exchange rates on a particular date
      operationId: getExchangeRates
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: date
        in: path
        description: Date to use
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExchangeRate'
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
    patch:
      tags:
      - exchange-rate
      summary: Update the USD-based exchange rates for a particular date. Must be the first of a month.
      operationId: setExchangeRates
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: date
        in: path
        description: Date to use
        required: true
        schema:
          type: string
          format: date
      responses:
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateExchangeRate'
        required: true
    delete:
      tags:
      - exchange-rate
      summary: Delete a custom exchange rate on a particular date
      operationId: deleteExchangeRate
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: date
        in: path
        description: Date to use
        required: true
        schema:
          type: string
          format: date
      - name: currencyCode
        in: query
        description: Currency code
        required: true
        schema:
          type: string
      responses:
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
  /v1/org/{orgId}/exchange-rate/{date}/custom:
    get:
      tags:
      - exchange-rate
      summary: Return org custom exchange rates
      operationId: getCustomExchangeRates
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: date
        in: path
        description: Date to use
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExchangeRate'
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
  /v1/org/{orgId}/exchange-rate/{date}/custom/bulkupdate:
    post:
      tags:
      - exchange-rate
      summary: Bulk update custom currency rates in org custom exchange rates
      operationId: bulkUpdateCustomExchangeRates
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: date
        in: path
        description: Date to use
        required: true
        schema:
          type: string
          format: date
      - name: addRates
        in: query
        description: Boolean to determine whether to add or remove rates from update
        required: false
        schema:
          type: boolean
      responses:
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/UpdateExchangeRate'
        description: Update data
        required: true
  /v1/org/{orgId}/exchange-rate/{date}/global:
    get:
      tags:
      - exchange-rate
      summary: Return the global exchange rates based on USD for a particular date
      operationId: getGlobalExchangeRates
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: date
        in: path
        description: Date to use
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExchangeRate'
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
  /v1/org/{orgId}/exchange-rate/{date}/history:
    get:
      tags:
      - exchange-rate
      summary: Return org custom exchange rates
      operationId: getCurrencyRateHistory
      parameters:
      - name: orgId
        in: path
        description: Org identifier (either id or slug)
        required: true
        schema:
          type: string
      - name: date
        in: path
        description: Date to use
        required: true
        schema:
          type: string
          format: date
      - name: currency
        in: query
        description: Currency to search for
        required: true
        schema:
          type: string
      - name: fromDate
        in: query
        description: Start date for search
        required: true
        schema:
          type: string
          format: date
      - name: toDate
        in: query
        description: End date for search
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExchangeRate'
        '400':
          description: bad request
        '401':
          description: not authorized
        '404':
          description: not found
components:
  schemas:
    UpdateExchangeRate:
      type: object
      properties:
        date:
          type: string
          format: date
          description: date
        rates:
          type: object
          description: exchange rates, per currency - the multiplier to convert the base currency into the foreign currency
          additionalProperties:
            type: number
    ExchangeRate:
      type: object
      required:
      - id
      - date
      - currency
      - rates
      properties:
        id:
          type: string
          description: globally unique id
          example: 588f7ee98f138b19220041a7
        orgId:
          type: string
          description: org id, if an org-specific exchange rate is in use
          example: 588f7ee98f138b19220041a7
        date:
          type: string
          format: date
          description: date
        currency:
          type: string
          description: base currency
        rates:
          type: object
          description: exchange rates, per currency - the multiplier to convert the base currency into the foreign currency
          additionalProperties:
            type: number
        updateAt:
          type: string
          description: updated timestamp
          example: '2017-01-24T13:57:52Z'