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

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