Skip to main content
GET
/
v1
/
remote-domains
/
{remoteDomain}
/
attestations
List attestations for crosschain transfers
curl --request GET \
  --url https://xreserve-api-testnet.circle.com/v1/remote-domains/{remoteDomain}/attestations
{
  "attestations": [
    {
      "payload": "0x123456",
      "messageHash": "<string>",
      "attestation": "<string>"
    }
  ]
}

Path Parameters

remoteDomain
integer
required

The remote domain ID by which to filter results.

Required range: x >= 0

Query Parameters

pageSize
integer

The number of results to return per page.

Required range: 1 <= x <= 1000
pageAfter
string

Base64-encoded pagination cursor that returns the next page of results. Do not use with pageBefore.

pageBefore
string

Base64-encoded pagination cursor that returns the previous page of results. Do not use with pageAfter.

from
string<date-time>

Filters results starting from the specified timestamp, in ISO 8601 format. Example: 2025-11-17T23:59:59Z

to
string<date-time>

Filters results up to the specified timestamp, in ISO 8601 format. Example: 2025-11-17T23:59:59Z

Response

Successfully retrieved attestations.

Contains a list of returned attestations.

attestations
object[]
required

Contains an array of attestations.