Skip to main content
GET
/
v3
/
currencies
/
contract
/
{platform}
/
{address}
/
backers
Currency backers by contract address
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/contract/{platform}/{address}/backers \
  --header 'X-Api-Key: <api-key>'
[
  {
    "fundId": 1,
    "fundSlug": "a16z",
    "fundName": "Andreessen Horowitz",
    "fundLogo": "<string>",
    "fundTier": 1,
    "fundType": "Venture",
    "isLead": true,
    "roundsCount": 3,
    "firstInvestmentDate": "2024-01-15T00:00:00.000Z"
  }
]

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

platform
string
required

Platform slug (token_platform.key). Case-sensitive exact match.

Example:

"ethereum"

address
string
required

Contract address. Case-insensitive match.

Example:

"0xdac17f958d2ee523a2206206994597c13d831ec7"

Query Parameters

offset
number
default:0
Required range: 0 <= x <= 50000
limit
number
default:50
Required range: 1 <= x <= 200
isLead
boolean

When true, return only funds that led at least one funding round of this project.

Response

fundId
number
required

Fund identifier.

Example:

1

fundSlug
string
required
Example:

"a16z"

fundName
string
required
Example:

"Andreessen Horowitz"

fundLogo
string | null
required

Absolute URL to the 150×150 fund logo. Null when unavailable.

fundTier
object
required

Editorial tier 1–5.

Example:

1

fundType
string | null
required

Fund category label as stored (e.g. Venture, Angel Investor, Hedge Fund).

Example:

"Venture"

isLead
boolean
required

True when the fund led at least one funding round of this project.

roundsCount
number
required

Number of funding rounds of this project in which the fund participated. Zero for funds listed as backers without a recorded round.

Example:

3

firstInvestmentDate
string | null
required

Date of the fund’s first known investment into this project (ISO 8601 UTC). Null when no funding round date is recorded.

Example:

"2024-01-15T00:00:00.000Z"