GET
/
search
CLI
curl --request GET \
--url 'https://api.coinpaprika.com/v1/search?q=btc'
{
  "currencies": [
    {
      "id": "btc-bitcoin",
      "name": "Bitcoin",
      "symbol": "BTC",
      "rank": 1,
      "is_new": false,
      "is_active": true,
      "type": "coin"
    }
  ],
  "icos": [
    {
      "id": "fil-filecoin-futures",
      "name": "Filecoin",
      "symbol": "FIL",
      "is_new": false
    }
  ],
  "exchanges": [
    {
      "id": "binance",
      "name": "Binance",
      "rank": 1
    }
  ],
  "people": [
    {
      "id": "vitalik-buterin",
      "name": "Vitalik Buterin",
      "teams_count": 5
    }
  ],
  "tags": [
    {
      "id": "blockchain-service",
      "name": "Blockchain Service",
      "coin_counter": 160,
      "ico_counter": 80
    }
  ]
}

Query Parameters

q
string
required

phrase for search eg. btc

c
string
default:currencies,exchanges,icos,people,tags

one or more categories (comma separated) to search. Available options: currencies|exchanges|icos|people|tags

modifier
string

set modifier for search results. Available options: symbol_search - search only by symbol (works for currencies only)

limit
integer
default:6

limit of results per category (max 250)

Response

200
application/json

successful operation

The response is of type object.