POST
/
assets
/
edges
List IP Asset Edges
curl --request POST \
  --url https://api.storyapis.com/api/v4/assets/edges \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "orderBy": "blockNumber",
  "orderDirection": "desc",
  "pagination": {
    "limit": 20,
    "offset": 0
  },
  "where": {
    "blockNumber": 1,
    "childIpId": "<string>",
    "parentIpId": "<string>",
    "txHash": "<string>"
  }
}'
{
  "$schema": "https://api.storyapis.com/api/v4/EdgesResponseHumaBody.json",
  "data": [
    {
      "blockNumber": 123,
      "blockTimestamp": "2023-11-07T05:31:56Z",
      "caller": "<string>",
      "childIpId": "<string>",
      "id": 123,
      "licenseTemplate": "<string>",
      "licenseTermsId": "<string>",
      "licenseTokenId": "<string>",
      "logIndex": 123,
      "parentIpId": "<string>",
      "processedAt": "2023-11-07T05:31:56Z",
      "txHash": "<string>"
    }
  ],
  "pagination": {
    "hasMore": true,
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

X-Api-Key
string
header
required

Body

application/json
orderBy
enum<string>

Field to order results by (currently only blockNumber is supported)

Available options:
blockNumber
orderDirection
enum<string>
default:desc

Order direction for results

Available options:
asc,
desc
pagination
object

Pagination configuration

where
object

Filter options for edges

Response

OK

data
object[] | null
required

List of derivative registered events (edges)

$schema
string<uri>

A URL to the JSON Schema for this object.

Examples:

"https://api.storyapis.com/api/v4/EdgesResponseHumaBody.json"

pagination
object

Pagination metadata