Agents

Get Agent by Scope and Slug

Retrieve detailed information about a specific agent using its scope and slug

get/api/v1/agents/{scope}/{slug}

Path parameters

scopestring required

The scope of the agent (e.g., '@corespeed', 'openai'). The @ symbol is optional.

Example:@corespeed
slugstring required

The slug of the agent

Example:assistant

Response

Successful response with agent details

Example response

{
  "agent": {
    "agent": {
      "platform": "agent0",
      "url": "https://agent0.example.com/agents/abc123"
    }
  }
}

Changes

Changed in 3 of the 11 revisions of this API.223

    • added the optional property agent/developerId to the response with the 200 status

      response-optional-property-added

  • b0e6563d3fce221See the full diff
    • the code response property const value INTERNAL_SERVER_ERROR was removed for the status 500

      response-property-const-removed

    • the code response property const value NOT_FOUND was removed for the status 404

      response-property-const-removed

    • added the new INTERNAL_SERVER_ERROR enum value to the code response property for the response status 500

      response-property-enum-value-added

    • added the new NOT_FOUND enum value to the code response property for the response status 404

      response-property-enum-value-added

    • api operation id getApiV1AgentsByScopeBySlug removed and replaced with

      api-operation-id-removed

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • endpoint added

      endpoint-added