FA Token Metadata
Fetch FA Token metadata for versions 0
to 400000
.
curl -s --location --request GET \
"https://movement.app.pangea.foundation/v1/api/fa-tokens?chains=MOVEMENT&from_block=0&to_block=400000" \
--header "Accept: application/jsonstream" \
--header "Accept-Encoding: gzip" --compressed \
--header "Authorization: Basic $PANGEA_AUTH" | jq
Response
[
...
{
"block_number": 362753,
"transaction_hash": "0xf1a21be04cbf5073c357c8aee4e1723e2b58639a847f91a397064a4b5f98e1bb",
"receipt_index": 0,
"address": "0x38aaec30b0469b9fff7ae2af0ce386eac5e7db7f2650ab0c0bce3554a918c735",
"name": "Native USD",
"symbol": "nUSD",
"decimals": 8,
"icon_uri": "https://lh3.googleusercontent.com/d/1kAO_2Cw_k1XS-62FkzO3dONMwCB31woF",
"project_uri": "https://raga.finance"
}
]
Query Parameters
movement.app.pangea.foundation/v1/api/fa-tokens
chains
: Filters the data bychain
.from_block
: Filters the data by a startingversion
. As Move chains use a per-transaction versioned database, we useversion
interchangably withblock_number
and omit blocks altogether.to_block
: Filters the data by an endingversion
. As Move chains use a per-transaction versioned database, we useversion
interchangably withblock_number
and omit blocks altogether.address__in
: Filters the data by a list of tokenaddress
.name__in
: Filters the data by a list of tokenname
.symbol__in
: Filters the data by a list of tokensymbol
.