curl --request GET \
--url https://api.cryptorank.io/v3/funding-rounds/list \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/funding-rounds/list"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.cryptorank.io/v3/funding-rounds/list', 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.cryptorank.io/v3/funding-rounds/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$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.cryptorank.io/v3/funding-rounds/list"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
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.cryptorank.io/v3/funding-rounds/list")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/funding-rounds/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 1234,
"currencyId": 28,
"type": "SERIES A",
"date": "2024-08-15T00:00:00.000Z",
"dateAccuracy": "day",
"raised": "5000000",
"category": {
"id": 12,
"slug": "defi",
"name": "DeFi"
},
"allInvestors": [
{
"id": 1,
"slug": "a16z",
"name": "Andreessen Horowitz",
"tier": 1,
"imageUrl": "<string>"
}
]
}
],
"meta": {
"page": 1,
"pageSize": 25,
"hasNextPage": true
},
"status": {
"usedCredits": 1,
"timestamp": 1780000000000
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Validation failed",
"status": 400
}
}{
"error": {
"code": "API_KEY_MISSING",
"message": "API key is missing",
"status": 401
}
}{
"error": {
"code": "NO_ACTIVE_SUBSCRIPTION",
"message": "No active subscription found",
"status": 403
}
}{
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Rate limit exceeded",
"status": 429
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "Internal server error",
"status": 500
}
}Funding Rounds Feed
Returns a feed of the latest funding rounds, with filters.
Available from: Pro
Cost: 1 credit per request
curl --request GET \
--url https://api.cryptorank.io/v3/funding-rounds/list \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/funding-rounds/list"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.cryptorank.io/v3/funding-rounds/list', 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.cryptorank.io/v3/funding-rounds/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$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.cryptorank.io/v3/funding-rounds/list"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
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.cryptorank.io/v3/funding-rounds/list")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/funding-rounds/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 1234,
"currencyId": 28,
"type": "SERIES A",
"date": "2024-08-15T00:00:00.000Z",
"dateAccuracy": "day",
"raised": "5000000",
"category": {
"id": 12,
"slug": "defi",
"name": "DeFi"
},
"allInvestors": [
{
"id": 1,
"slug": "a16z",
"name": "Andreessen Horowitz",
"tier": 1,
"imageUrl": "<string>"
}
]
}
],
"meta": {
"page": 1,
"pageSize": 25,
"hasNextPage": true
},
"status": {
"usedCredits": 1,
"timestamp": 1780000000000
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Validation failed",
"status": 400
}
}{
"error": {
"code": "API_KEY_MISSING",
"message": "API key is missing",
"status": 401
}
}{
"error": {
"code": "NO_ACTIVE_SUBSCRIPTION",
"message": "No active subscription found",
"status": 403
}
}{
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Rate limit exceeded",
"status": 429
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "Internal server error",
"status": 500
}
}Authorizations
Query Parameters
Page number (1-based). Returns up to 50 items per page.
1 <= x <= 1000Filter by round type. Value must match a stored round-type label exactly.
ANGEL, Debt Financing, Extended Pre-Seed, Extended Seed, Extended Series A, Extended Series B, Extended Series C, Extended Series D, Grant, IPO, Incubation, KOL, M&A, OTC Purchase, PIPE, Post-IPO, Post-IPO Debt, PRESALE, PRE SEED, Pre-Series A, Pre-Series B, Private Token Sale, SEED, SERIES A, SERIES B, SERIES C, SERIES D, Series E, Series F, Series G, Series H, STRATEGIC, Treasury Diversification, Undisclosed "SEED"
Window start — lower bound on the round date (inclusive). Accepts ISO 8601 string or Unix timestamp (sec/ms).
"2024-01-01T00:00:00.000Z"
Window end — upper bound on the round date (inclusive). Accepts ISO 8601 string or Unix timestamp (sec/ms). Bare YYYY-MM-DD is coerced to end-of-day UTC.
"2024-12-31T23:59:59.999Z"
Minimum round size in USD (inclusive).
1000000
Maximum round size in USD (inclusive).
100000000
Filter by coin primary category identifier. See: GET /v3/currencies/categories.
12
Filter rounds with participation of the fund with this identifier. See: GET /v3/funds/map.
1
When true, keep only rounds where the fund participated as a lead investor. Requires fundId; ignored without it.
true
Filter by coin (currency) identifier. See: GET /v3/currencies/map.
28
Sort field.
id, date, raised Sort direction.
asc, desc