SimpleHash
API actions for the SimpleHash integration.
SimpleHash
Discover NFTs, collections, and activity via SimpleHash.
Get collection info
Retrieve metadata for a specific NFT collection.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
collection_id | string | Yes | Collection ID from SimpleHash. |
Response
{}Get collection stats
Retrieve stats for a specific NFT collection.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
collection_id | string | Yes | Collection ID from SimpleHash. |
Response
{}Get NFT metadata
Retrieve metadata for a specific NFT by chain and token ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
chain | string | Yes | Blockchain network (e.g., ethereum, polygon). |
contract_address | string | Yes | NFT contract address. |
token_id | string | Yes | NFT token ID. |
Response
{}Get wallet activity
Retrieve recent NFT activity for a wallet.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
wallet_address | string | Yes | Wallet address to inspect. |
chain | string | Yes | Blockchain network (e.g., ethereum). |
limit | number | No | Maximum activity records to return. |
Response
{}List contract tokens
List tokens for an NFT contract, with optional pagination.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
chain | string | Yes | Blockchain network (e.g., ethereum). |
contract_address | string | Yes | NFT contract address. |
cursor | string | No | Pagination cursor from a previous call. |
limit | number | No | Maximum tokens to return in a single call. |
Response
{}List wallet NFTs
List NFTs owned by a wallet.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
wallet_address | string | Yes | Wallet address to inspect. |
chain | string | Yes | Blockchain network (e.g., ethereum). |
cursor | string | No | Pagination cursor from a previous call. |
Response
{}Search NFTs
Search NFTs by keyword.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Search terms, such as collection or trait keywords. |
limit | number | No | Maximum number of NFTs to return. |
Response
{}