CoinGate Currencies API

Retrieve supported currencies and platforms

Operations 1

GET /currencies Get Currencies #

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/coingate-currencies-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

coingate-currencies-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CoinGate Payment Gateway Conversions Currencies API
  description: REST API for accepting cryptocurrency payments, managing orders, processing refunds, handling payouts, performing currency conversions, and accessing merchant ledger and billing data. Supports both production and sandbox environments.
  version: '2'
  contact:
    name: CoinGate Support
    url: https://coingate.com/contact
    email: support@coingate.com
  termsOfService: https://coingate.com/terms
  x-logo:
    url: https://coingate.com/images/coingate-logo.png
servers:
- url: https://api.coingate.com/api/v2
  description: Production
- url: https://api-sandbox.coingate.com/api/v2
  description: Sandbox
security:
- bearerAuth: []
tags:
- name: Currencies
  description: Retrieve supported currencies and platforms
paths:
  /currencies:
    get:
      summary: Get Currencies
      description: Retrieves all supported currencies with optional filtering.
      operationId: currencies
      tags:
      - Currencies
      security: []
      parameters:
      - name: native
        in: query
        schema:
          type: boolean
      - name: enabled
        in: query
        schema:
          type: boolean
      - name: merchant_pay
        in: query
        schema:
          type: boolean
      - name: merchant_receive
        in: query
        schema:
          type: boolean
      - name: kind
        in: query
        description: 'Filter by currency type. Accepted values: crypto, fiat'
        schema:
          type: string
          enum:
          - crypto
          - fiat
      - name: symbol
        in: query
        description: Search by currency symbol, e.g. BTC
        schema:
          type: string
      responses:
        '200':
          description: List of currencies
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                    title:
                      type: string
                    kind:
                      type: string
                      enum:
                      - crypto
                      - fiat
                    symbol:
                      type: string
                    native:
                      type: boolean
                    disabled:
                      type: boolean
                    disabled_message:
                      type: string
                      nullable: true
                    merchant:
                      type: object
                      properties:
                        price:
                          type: boolean
                        pay:
                          type: boolean
                        receive:
                          type: boolean
                    platforms:
                      type: array
                      items:
                        type: object
                        properties:
                          id:
                            type: integer
                          id_name:
                            type: string
                          title:
                            type: string
                          enabled:
                            type: boolean
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API Token authentication. Obtain your API token from the CoinGate merchant dashboard.
externalDocs:
  description: CoinGate Developer Documentation
  url: https://developer.coingate.com/docs/api-overview