Skip to main content
GET
/
v3
/
funds
/
{id}
/
country
Fund investments by country
curl --request GET \
  --url https://api.cryptorank.io/v3/funds/{id}/country \
  --header 'X-Api-Key: <api-key>'
[
  {
    "country": "United States",
    "countryCode": "US",
    "investmentsCount": 42,
    "percentOfTotal": 31.58
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cryptorank.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
number
required

Response

200 - application/json
country
string
required

Country full name.

Example:

"United States"

countryCode
string
required

ISO 3166-1 alpha-2 country code.

Example:

"US"

investmentsCount
number
required

Number of funded rounds the fund participated in for projects located in this country.

Example:

42

percentOfTotal
number
required

Share of this country across all rounds with a known project country, in percent (0–100, two decimals).

Example:

31.58