# Declare intent
curl -X POST https://api.useproxy.ai/v1/cards/card_xxx/intents \
-H "Authorization: Bearer your_api_key" \
-H "Content-Type: application/json" \
-d '{
"purpose": "Purchase supplies from Amazon",
"expectedAmount": 5000,
"expectedMerchant": "Amazon"
}'
# Get card details
curl -X POST https://api.useproxy.ai/v1/cards/card_xxx/details \
-H "Authorization: Bearer your_api_key" \
-H "Content-Type: application/json" \
-d '{
"intentId": "int_xxx",
"purpose": "Purchase supplies from Amazon"
}'