Rensei docs
API ReferenceAgent Cards

Get one agent card, including editor-prefill content.

Returns a single agent card with the rich list fields plus an editor-prefill `content` object (systemPrompt, responsibilities, outputContract, nonGoals, partials, tools, modelRef). Returns 404 - never 403 - for a card in a different org or one the caller has no access to.

GET
/api/agent-cards/{id}

Authorization

AuthorizationBearer <token>

Rensei API key presented as Authorization: Bearer rsk_live_. Required API-key scopes are recorded per operation in x-rensei-required-scopes.

In: header

Path Parameters

id*string

The agent card id.

Response Body

application/json

curl -X GET "https://example.com/api/agent-cards/string"
{
  "card": {
    "id": "string",
    "name": "string",
    "scope": "string",
    "content": {
      "property1": null,
      "property2": null
    },
    "property1": null,
    "property2": null
  }
}
Empty
Empty
Empty
Empty