Skip to main content
GET
/
search
CLI
curl --request GET \
--url 'https://api.coinpaprika.com/v1/search?q=btc'
import requests

url = "https://api.coinpaprika.com/v1/search"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.coinpaprika.com/v1/search', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.coinpaprika.com/v1/search",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.coinpaprika.com/v1/search"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.coinpaprika.com/v1/search")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.coinpaprika.com/v1/search")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "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
    }
  ]
}
{
  "error": "you have reached maximum request limit"
}

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

successful operation

currencies
object[]
icos
object[]
exchanges
object[]
people
object[]
tags
object[]