⚙️Getting Started: REST API

The following is an example of how to access Nansen Query API via the Postman API Platform. The process might be different, depending on your network environment and software used. Please consult your IT administrator for access issues.

Nansen Query API allows users to retrieve real-time blockchain data via REST APIs.

To get started:

https://query.api.nansen.ai/auth

The following sample code can be executed from most Linux terminals:

curl -i -H "Accept: application/json" \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"email": "EMAIL", "password": "PASSWORD"}' \
    https://query.api.nansen.ai/auth
⚙️pagePredefined Endpoints
curl -i -H "Accept: application/json" \
    -X POST \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer TOKEN" \
    -d '{"params": {}}' \
    https://query.api.nansen.ai/v1/questions/api_nft_hot_last_24h

Last updated