/registry-diff
Query registry entries whose status was updated after the provided timestamp. Supports pagination. Always use statusUpdatedAt of the last item + its cursorId to paginate forward. This guarantees to include all items at least once, when paginating. Note: if the cursorId is not valid it will include all items with an id greater than the cursorId (in string comparison order). If no cursorId is provided, all items, including those with the same statusUpdatedAt, will be included. In case the statusUpdatedAt is before the provided statusUpdatedAfter, all items after the statusUpdatedAfter will be included, regardless of the cursorId.
API key authentication via header (token)
In: header
"Preprod" | "Mainnet"101 <= value <= 50The ID of the last item in the previous page, it and all items after it will be included in the next page response if they did not change since the last page (if they did they will be moved to the newer timestamp). Guaranteed to include all items at least once, when paginating forward. (always use statusUpdatedAt of the last item + its cursorId to paginate forward)
1 <= length <= 75Response Body
curl -X POST "https://loading/./../api/v1/registry-diff/" \
-H "Content-Type: application/json" \
-d '{
"limit": 10,
"cursorId": "last_paginated_item",
"network": "Preprod",
"statusUpdatedAfter": "1970-01-01T00:00:00.000Z"
}'{
"data": {
"entries": [
{
"id": "unique_cuid_v2",
"name": "Example API",
"description": "Example API description",
"status": "Online",
"statusUpdatedAt": "1970-01-01T00:02:00.000Z",
"authorName": null,
"authorContactEmail": null,
"authorContactOther": null,
"image": "testimage.de",
"otherLegal": null,
"privacyPolicy": null,
"tags": [],
"termsAndCondition": "If the answer is 42 what was the question",
"uptimeCheckCount": 10,
"uptimeCount": 8,
"lastUptimeCheck": "1970-01-01T00:00:00.000Z",
"apiBaseUrl": "https://example.com/api/",
"authorOrganization": "MASUMI",
"paymentType": "Web3CardanoV1",
"agentIdentifier": "222222222222222222222222222222222222222222222222222222222222222222",
"RegistrySource": {
"id": "unique_cuid_v2",
"policyId": "policy_id",
"type": "Web3CardanoV1",
"url": "https://example.com/api/"
},
"Capability": {
"name": "Example Capability",
"version": "1.0.0"
},
"AgentPricing": {
"pricingType": "Fixed",
"FixedPricing": {
"Amounts": [
{
"amount": "100",
"unit": "USDC"
}
]
}
},
"ExampleOutput": [
{
"name": "Example Output",
"mimeType": "image/png",
"url": "https://example.com/image.png"
}
]
}
]
},
"status": "success"
}


