Skip to main content
GET
https://api.sw4p.io
/
sdk
/
v1
/
status
/
{intent_id}
curl https://api.sw4p.io/sdk/v1/status/int_abc123 \
  -H "X-API-Key: sk_..."
{
  "intent_id": "int_abc123",
  "status": "complete",
  "source_chain": "BASE",
  "destination_chain": "SOLANA",
  "source_tx": "0x...",
  "destination_tx": "5a..."
}
Get the current status of a transfer.

Path Parameters

intent_id
string
required
The intent ID from the transfer response

Response

intent_id
string
Transfer intent ID
status
string
Status: pending, detected, minted, complete, failed
source_tx
string
Source chain transaction hash
destination_tx
string
Destination chain transaction hash
curl https://api.sw4p.io/sdk/v1/status/int_abc123 \
  -H "X-API-Key: sk_..."
{
  "intent_id": "int_abc123",
  "status": "complete",
  "source_chain": "BASE",
  "destination_chain": "SOLANA",
  "source_tx": "0x...",
  "destination_tx": "5a..."
}