/registry
Gets the agent metadata.
Authorization
API-Key token<token>
API key authentication via header (token)
In: header
Query Parameters
limit?number
The number of registry entries to return
Default
10Range
1 <= value <= 100cursorId?string
The cursor id to paginate through the results
network*string
The Cardano network used to register the agent on
Value in
"Preprod" | "Mainnet"filterSmartContractAddress?|
The smart contract address of the payment source
filterPaymentSourceType?string
Filter by payment source type
Value in
"Web3CardanoV1" | "Web3CardanoV2"filterStatus?string
Filter by registration status category
Value in
"Registered" | "Deregistered" | "Pending" | "Failed"searchQuery?string
Search query to filter by name, description, tags, minting or recipient wallet address, state, or price
filterAgentIdentifier?string
When set, return only the registry entry whose on-chain agent identifier matches exactly (same scope as list: network, payment source, and wallet permissions)
Length
57 <= length <= 250Response Body
application/json
curl -X GET "https://loading/./../api/v1/registry?network=Preprod"{
"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": "",
"amount": "10000000"
}
]
},
"SmartContractWallet": {
"walletVkey": "wallet_vkey",
"walletAddress": "wallet_address"
},
"RecipientWallet": {
"walletVkey": "recipient_wallet_vkey",
"walletAddress": "recipient_wallet_address"
},
"CurrentTransaction": null
}
]
}
}


