Clypto Documentation
Get API KeyClypto Exchange
  • Welcome to Clypto
  • Getting Started
    • What is Clypto?
    • Why Clypto?
    • Supported Chains and DEX Aggregators, Bridges
  • FAQ
  • Clypto Exchange
    • Overview
    • Wallets
      • How to connect a wallet
    • How to swap
  • Integrate API
    • Overview
    • Get API Key
    • Monetization
    • Integrate SDK
    • API Reference
      • Supported Chains and Providers
      • Utility
      • Quote
      • Swap
  • Resources
    • X (Twitter)
    • Discord
    • Blog
    • GitHub
Powered by GitBook
On this page
Export as PDF
  1. Integrate API
  2. API Reference

Utility

PreviousSupported Chains and ProvidersNextQuote

Get available blockchains

get

Get available blockchains

Authorizations
Responses
200
Default Response
application/json
get
GET /v1/chains HTTP/1.1
Host: api.clypto.com
x-api-key: YOUR_API_KEY
Accept: */*
200

Default Response

[
  {
    "chainId": "text",
    "chainName": "text",
    "logoURI": "text"
  }
]

Get available providers

get

Get available blockchains

Authorizations
Responses
200
Default Response
application/json
get
GET /v1/providers HTTP/1.1
Host: api.clypto.com
x-api-key: YOUR_API_KEY
Accept: */*
200

Default Response

[
  {
    "provider": "text",
    "logoURI": "text"
  }
]

Get token list by providers, chains

get

Get token list by providers, chains

Authorizations
Query parameters
providerstringOptional

Comma-separated providers

chainstringOptional

Comma-separated chains

Responses
200
Default Response
application/json
get
GET /v1/tokens HTTP/1.1
Host: api.clypto.com
x-api-key: YOUR_API_KEY
Accept: */*
200

Default Response

[
  {
    "name": "text",
    "timestamp": "text",
    "version": {
      "major": 1,
      "minor": 1,
      "patch": 1
    },
    "counts": 1,
    "tokens": [
      {
        "chainId": "text",
        "address": "text",
        "decimals": 1,
        "symbol": "text",
        "name": "text",
        "logoURI": "text",
        "coingeckoId": "text"
      }
    ]
  }
]
  • GETGet available blockchains
  • GETGet available providers
  • GETGet token list by providers, chains