Skip to main content
POST
/
v1
/
actions
/
transfer
Execute Safe Transfer
curl --request POST \
  --url https://api.aegisintent.xyz/v1/actions/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --header 'X-Aegis-Email: <x-aegis-email>' \
  --header 'X-Aegis-Nonce: <x-aegis-nonce>' \
  --data '
{
  "recipientAddress": "<string>",
  "amount": "<string>"
}
'
{
  "success": true,
  "txHash": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.aegisintent.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Perform a secure, gas-abstracted stablecoin transfer to a recipient address. This action is validated against cumulative limits in the Policy Engine.

Authorizations

Authorization
string
header
required

Provide raw API session token issued by /v1/connect/complete

Headers

X-Aegis-Email
string
required

Agent email address

Idempotency-Key
string
required

Unique UUID v4 for idempotency

X-Aegis-Nonce
integer
required

Current agent action nonce

Body

application/json
recipientAddress
string
required
amount
string
required
token
enum<string>
required
Available options:
USDC,
EURC

Response

200 - application/json

Transfer initiated successfully

success
boolean
txHash
string