Rensei docs

A2A (Agent-to-Agent) JSON-RPC endpoint (message/send, tasks/get, tasks/cancel).

A2A (Agent-to-Agent) JSON-RPC endpoint (message/send, tasks/get, tasks/cancel). - Rensei REST API operation reference.

POST
/api/a2a

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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/a2a" \  -H "Content-Type: application/json" \  -d '{    "jsonrpc": "2.0",    "method": "string"  }'
{
  "jsonrpc": "2.0",
  "id": "string",
  "result": null,
  "error": {
    "code": 0,
    "message": "string",
    "data": null
  }
}