/registry
Gets the agent metadata.
token<token>
API key authentication via header (token)
In: header
Query Parameters
cursorId?string
The cursor id to paginate through the results
networkstring
The Cardano network used to register the agent on
Value in
"Preprod" | "Mainnet"
filterSmartContractAddress?string | null
The smart contract address of the payment source
Response Body
curl -X GET "https://loading/./../api/v1/registry/?cursorId=string&network=Preprod&filterSmartContractAddress=string"
{
"status": "success",
"data": {
"Assets": [
{
"error": null,
"id": "asset_id",
"name": "name",
"description": "description",
"Capability": {
"name": "capability_name",
"version": "capability_version"
},
"Author": {
"name": "author_name",
"organization": "author_organization",
"contactEmail": "author_contact_email",
"contactOther": "author_contact_other"
},
"Legal": {
"privacyPolicy": "privacy_policy",
"terms": "terms",
"other": "other"
},
"state": "RegistrationRequested",
"Tags": [
"tag1",
"tag2"
],
"createdAt": "1970-01-20T20:00:36.260Z",
"updatedAt": "1970-01-20T20:00:36.260Z",
"lastCheckedAt": "1970-01-20T20:00:36.260Z",
"agentIdentifier": "agent_identifier",
"apiBaseUrl": "api_url",
"ExampleOutputs": [],
"AgentPricing": {
"pricingType": "Fixed",
"Pricing": [
{
"unit": "unit",
"amount": "1000000"
}
]
},
"SmartContractWallet": {
"walletVkey": "wallet_vkey",
"walletAddress": "wallet_address"
},
"CurrentTransaction": null
}
]
}
}