Indexer
- Overview
- Installation
- Endpoints
- Examples
Indexer Gateway
Analytics
- Overview
- Endpoints
- Examples
Metadata
- Overview
- Endpoints
- public
- POSTDirectoryGetCollections
- POSTDirectoryGetNetworks
- POSTEnqueueTokensForRefresh
- POSTGetContractInfoBatch
- POSTGetContractInfo
- POSTGetTokenMetadataBatch
- POSTGetTokenMetadata
- POSTRefreshTokenMetadata
- POSTSearchContractInfoBatch
- POSTSearchContractInfo
- POSTSearchTokenIDs
- POSTSearchTokenMetadata
- POSTSearchTokens
- POSTTokenCollectionFilters
- POSTRefreshAllContractTokens
- POSTRefreshContractInfo
- POSTRefreshContractTokens
- POSTSearchContracts
- POSTSearchMetadata
- POST
- secret
- Examples
Infrastructure
- Overview
- Endpoints
Builder
- Overview
- Endpoints
Marketplace
- Overview
- Endpoints
Transactions
- Overview
- Installation
- Endpoints
- Examples
Blockchain RPC
public
SearchTokenIDs
POST
/
rpc
/
Metadata
/
SearchTokenIDs
Copy
Ask AI
curl --request POST \
--url https://metadata.sequence.app/rpc/Metadata/SearchTokenIDs \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"chainID": "80002",
"contractAddress": "0x70a2177079877e4aae639d1abb29ffa537b94970",
"filter": {
"text": "Divine"
}
}'
Copy
Ask AI
{
"page": null,
"tokenIds": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9"
]
}
Authorizations
Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI
Body
application/json
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://metadata.sequence.app/rpc/Metadata/SearchTokenIDs \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"chainID": "80002",
"contractAddress": "0x70a2177079877e4aae639d1abb29ffa537b94970",
"filter": {
"text": "Divine"
}
}'
Copy
Ask AI
{
"page": null,
"tokenIds": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9"
]
}
Assistant
Responses are generated using AI and may contain mistakes.