Masumi Logo

/registry-wallet

Gets the agent metadata.

GET
/registry/wallet
token<token>

API key authentication via header (token)

In: header

Query Parameters

walletVKeystring

The payment key of the wallet to be queried

Lengthlength <= 250
networkstring

The Cardano network used to register the agent on

Value in"Preprod" | "Mainnet"
smartContractAddress?string

The smart contract address of the payment source to which the registration belongs

Lengthlength <= 250

Response Body

curl -X GET "https://loading/./../api/v1/registry/wallet?walletVKey=string&network=Preprod&smartContractAddress=string"
{
  "status": "success",
  "data": {
    "Assets": [
      {
        "policyId": "policy_id",
        "assetName": "asset_name",
        "agentIdentifier": "agent_identifier",
        "Metadata": {
          "name": "name",
          "description": "description",
          "apiBaseUrl": "api_url",
          "ExampleOutputs": [],
          "Tags": [
            "tag1",
            "tag2"
          ],
          "Capability": {
            "name": "capability_name",
            "version": "capability_version"
          },
          "Legal": {
            "privacyPolicy": "privacy_policy",
            "terms": "terms",
            "other": "other"
          },
          "Author": {
            "name": "author_name",
            "contactEmail": "author_contact_email",
            "contactOther": "author_contact_other",
            "organization": "author_organization"
          },
          "image": "image",
          "AgentPricing": {
            "pricingType": "Fixed",
            "Pricing": [
              {
                "amount": "1000000",
                "unit": "unit"
              }
            ]
          },
          "metadataVersion": 1
        }
      }
    ]
  }
}