Skip to main content
GET
/
api
/
v1
/
registry
/
linked
/
{linkedServerName}
/
{agentName}
/
{agentVersion}
Inspect linked server registry agent
curl --request GET \
  --url https://api.example.com/api/v1/registry/linked/{linkedServerName}/{agentName}/{agentVersion} \
  --header 'Authorization: Bearer <token>'
{
  "registryAgent": {
    "info": {
      "capabilities": [],
      "identifier": {
        "name": "<string>",
        "version": "<string>",
        "registrySourceId": {
          "linkedServerId": "<string>"
        }
      },
      "description": "<string>",
      "readme": "<string>",
      "summary": "<string>",
      "license": {
        "expression": "<string>"
      },
      "keywords": [
        "<string>"
      ],
      "links": {}
    },
    "edition": 123,
    "runtimes": {
      "executable": {
        "path": "<string>",
        "arguments": [
          "<string>"
        ]
      },
      "docker": {
        "image": "<string>",
        "command": [
          "<string>"
        ]
      },
      "function": {}
    },
    "options": {},
    "exportSettings": {},
    "llm": {
      "proxies": [
        {
          "name": "<string>",
          "format": {},
          "models": [
            "<string>"
          ]
        }
      ]
    },
    "marketplace": {
      "keywords": [
        "<string>"
      ],
      "pricing": {
        "description": "<string>",
        "recommendations": {
          "min": 123,
          "max": 123
        },
        "currency": "<string>"
      },
      "identities": {
        "erc8004": {
          "wallet": "<string>",
          "endpoints": [
            {
              "name": "<string>",
              "endpoint": "<string>"
            }
          ]
        }
      }
    }
  },
  "restrictions": [
    {
      "linkedServerId": "<string>"
    }
  ],
  "extension": {
    "publishedAt": "<string>",
    "iconUrl": "<string>",
    "developer": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.coralos.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

linkedServerName
string
required

The name of the linked server to source the details of this agent from

agentName
string
required

The name of the agent

agentVersion
string
required

The version of the agent

Response

Success

registryAgent
RegistryAgent · object
required
restrictions
(linked · object | local · object | remote · object)[]
required
extension
RegistryAgentExtension · object