Skip to main content
GET
/
signature
/
{id}
Signature
curl --request GET \
  --url https://api.redpill.ai/v1/signature/{id} \
  --header 'Authorization: Bearer <token>'
/v1/signature/{id} is a legacy endpoint kept for backward compatibility with earlier API clients. It returns the same receipt as the canonical GET /v1/aci/receipts/{id}, wrapped in a legacy envelope. New integrations should use the canonical endpoint.
id
string
required
A receipt id (rcpt-…) or a response id (chat id).

Response

FieldDescription
api_versionACI version token, for example aci/1.
signing_algoSignature algorithm, for example ecdsa.
signing_addressAddress that signed text.
text"<request body hash>:<response hash>". The signed message.
signatureSignature over text.
receiptThe full receipt object, identical to the canonical /v1/aci/receipts/{id} response.
{
  "api_version": "aci/1",
  "signing_algo": "ecdsa",
  "signing_address": "0xffb22d95…",
  "text": "111d08a5…:07703fb4…",
  "signature": "0xd0cd266a…",
  "receipt": { "receipt_id": "rcpt-…", "event_log": [ "…" ], "signature": "…" }
}
The canonical /v1/aci/receipts/{id} returns the receipt object directly, without the outer text / signature / signing_address envelope.

Get receipt

Attestation Report