English
Protocol API
cURL
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>" } } '
{ "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>" } ], "$schema": "<string>", "pagination": { "hasMore": true, "limit": 123, "offset": 123, "total": 123 } }
Retrieve a list of edges (derivative registered events) that represent relationships between IP assets. These edges show parent-child relationships formed through licensing.
Field to order results by (currently only blockNumber is supported)
blockNumber
Order direction for results
asc
desc
Pagination configuration
Show child attributes
Number of items to return
1 <= x <= 200
Number of items to skip
x >= 0
Filter options for edges
Block number to filter by
Child IP ID to filter by
Parent IP ID to filter by
Transaction hash to filter by
OK
List of derivative registered events (edges)
A URL to the JSON Schema for this object.
Pagination metadata
Whether there are more items
Current limit
Current offset
Total count of items