v17

latestOpenAPI 3.0.0raw.githubusercontent.com2026-06-2580373.5 KB
Intents

Get Intent

Retrieves the status of an intent along with per-claim progress across chains.

get/intent-operation/{id}

Path parameters

idstring required

Unique identifier of the intent operation

Example:77119256265773742309930654065362693497375232736834856992878277299604179621015

Unique identifier of the intent operation

Query parameters

fullboolean

Whether to include intent operation details

Whether to include intent operation details

Headers

x-api-version'2026-01.alps' required

API version. Required; pinned to this document.

x-api-keystring required

API key.

Response

OK

status'PENDING' | 'COMPLETED' | 'FAILED' required

Overall intent status: PENDING, COMPLETED, or FAILED

destinationChainIdnumber

Destination (fill) chain ID

fillTimestampnumber

Block timestamp of the fill in unix seconds

fillTransactionHashstring

Fill transaction hash

userAddressstring required

Account address

Example response

{
  "status": "COMPLETED",
  "details": {
    "id": "12345678901234567890",
    "nonce": "0x000000000000000000000000000000000000000000000000ab54a98ceb1f0ad2",
    "recipient": "0x3672e268a79bd4acc5ee646bdda652547c7a435c",
    "createdAt": 1633493100,
    "latencyMs": 8100,
    "settlementLayer": "ACROSS",
    "source": [
      {
        "chain": 10,
        "tokens": [
          {
            "token": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
            "amount": "1000000"
          }
        ],
        "txHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21",
        "timestamp": 1633493192,
        "status": "COMPLETED"
      }
    ],
    "destination": {
      "chain": 10,
      "tokens": [
        {
          "token": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
          "amount": "1000000"
        }
      ],
      "txHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21",
      "timestamp": 1633493192,
      "status": "COMPLETED"
    },
    "executions": [
      {
        "chain": 8453,
        "phase": "DESTINATION",
        "to": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "value": "0",
        "data": "0xa9059cbb000000000000000000000000579d5631f76126991c00fb8fe5467fa9d49e5f6a00000000000000000000000000000000000000000000000000000000000f4240"
      }
    ],
    "cost": {
      "sponsored": true,
      "sponsoredValue": "210000",
      "protocolFee": "10000"
    }
  },
  "claims": [
    {
      "chainId": 1,
      "status": "COMPLETED",
      "claimTimestamp": 1633493192,
      "claimTransactionHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21"
    }
  ],
  "destinationChainId": 8453,
  "fillTimestamp": 1633493192,
  "fillTransactionHash": "0xc1674f4671accbceec3f22c2c9cfa4f7aead7183f48df90c239e0d85d6c31e21",
  "userAddress": "0x3672e268a79bd4acc5ee646bdda652547c7a435c"
}