curl --request POST \
--url https://api.storyapis.com/api/v3/assets \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <x-api-key>' \
--header 'X-Chain: <x-chain>' \
--data '{
"options": {
"ipAssetIds": [
"<string>"
],
"orderBy": "id",
"orderDirection": "asc",
"pagination": {
"after": "<string>",
"before": "<string>",
"limit": 123
},
"tokenContractIds": [
"<string>"
],
"tokenIds": [
"<string>"
],
"where": {
"blockNumber": "<string>",
"blockNumberGte": "<string>",
"blockNumberLte": "<string>",
"id": "<string>",
"ipId": "<string>",
"tokenContract": "<string>",
"tokenId": "<string>"
}
}
}'
{
"data": [
{
"ancestorCount": 123,
"blockNumber": "<string>",
"blockTimestamp": "<string>",
"childrenCount": 123,
"descendantCount": 123,
"id": "<string>",
"ipId": "<string>",
"isGroup": true,
"latestArbitrationPolicy": "<string>",
"nftMetadata": {
"chainId": "<string>",
"imageUrl": "<string>",
"name": "<string>",
"tokenContract": "<string>",
"tokenId": "<string>",
"tokenUri": "<string>"
},
"parentCount": 123,
"rootCount": 123,
"rootIpIds": [
"<string>"
],
"transactionHash": "<string>"
}
],
"hasNextPage": true,
"hasPreviousPage": true,
"next": "<string>",
"prev": "<string>"
}
Retrieve a paginated, filtered list of IPAssets
curl --request POST \
--url https://api.storyapis.com/api/v3/assets \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <x-api-key>' \
--header 'X-Chain: <x-chain>' \
--data '{
"options": {
"ipAssetIds": [
"<string>"
],
"orderBy": "id",
"orderDirection": "asc",
"pagination": {
"after": "<string>",
"before": "<string>",
"limit": 123
},
"tokenContractIds": [
"<string>"
],
"tokenIds": [
"<string>"
],
"where": {
"blockNumber": "<string>",
"blockNumberGte": "<string>",
"blockNumberLte": "<string>",
"id": "<string>",
"ipId": "<string>",
"tokenContract": "<string>",
"tokenId": "<string>"
}
}
}'
{
"data": [
{
"ancestorCount": 123,
"blockNumber": "<string>",
"blockTimestamp": "<string>",
"childrenCount": 123,
"descendantCount": 123,
"id": "<string>",
"ipId": "<string>",
"isGroup": true,
"latestArbitrationPolicy": "<string>",
"nftMetadata": {
"chainId": "<string>",
"imageUrl": "<string>",
"name": "<string>",
"tokenContract": "<string>",
"tokenId": "<string>",
"tokenUri": "<string>"
},
"parentCount": 123,
"rootCount": 123,
"rootIpIds": [
"<string>"
],
"transactionHash": "<string>"
}
],
"hasNextPage": true,
"hasPreviousPage": true,
"next": "<string>",
"prev": "<string>"
}
options
property and deleting it.API Key
Chain Destination
The body is of type object
.
OK
The response is of type object
.