Track Address

Tracking Addresses For Reporting

This endpoint enables programmatic tracking of addresses/fees for reporting purposes and aims to replace the manually processes of generating/exchanging/processing of Google Sheets.

Supports 54 protocols (see protocol enum in OpenAPI spec for values).

Protocol-specific nuances

The fee_percentage field is for custodians. Ignore otherwise.

The recommended implementation plan is to call it after an onchain confirmation of a successful staking transaction.

Mainnet only.

⚠️ Once you call this endpoint, it may take up to an hour for those addresses to show up via our API.

Parameters

protocol

address

fee_percentage

Response Status Codes

Example Request

curl --request POST \
     --url https://api.figment.io/addresses \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'x-api-key: your-api-key-here' \
     --data '\
{\
  "protocol": "agoric"\
}\
'```

### Example Response

```json
{
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "protocol": "solana",
    "network": "mainnet",
    "address": "3ydf2egwcsjvigdqagtcajfcdjayzs4wklxokgerfb8j"
  }
}