Skip to main content
POST
/
v1
/
actions
/
wealth
/
dca
Register DCA Schedule
curl --request POST \
  --url https://api.aegisintent.xyz/v1/actions/wealth/dca \
  --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 '
{
  "tokenIn": "USDC",
  "tokenOut": "cirBTC",
  "amountInPerTx": "25.00",
  "frequencyHours": 24
}
'

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.

Register a recurring dollar cost averaging schedule. The Wealth Sentinel automatically executes each leg at the specified interval using the agent’s Circle Developer Controlled Wallet.

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 for financial idempotency

X-Aegis-Nonce
integer
required

Current agent nonce

Body

application/json
tokenIn
string
required
Example:

"USDC"

tokenOut
string
required
Example:

"cirBTC"

amountInPerTx
string
required
Example:

"25.00"

frequencyHours
integer
required
Example:

24

Response

200

DCA schedule registered successfully