privacy-cards
Privacy.com Virtual Cards
Create, manage, and monitor virtual cards via the Privacy.com API. Designed for AI agents that need to make purchases with controlled spending limits.
When to Use
- Agent needs to buy something (domain, API access, subscription, physical goods)
- Agent needs a disposable card for a one-time purchase
- User wants to create a spend-limited card for a specific merchant
- User asks to check card status or recent transactions
- User wants to pause or close a card
Setup
Requires the PRIVACY_API_KEY environment variable. Get an API key from your Privacy.com account settings.
Plans and card limits:
- Free: 12 cards/month
- Pro ($10/mo): 36 cards/month
- Premium ($25/mo): 60 cards/month
Sandbox: Use https://sandbox.privacy.com/v1 for testing. Production: https://api.privacy.com/v1.
API Reference
Base URL: https://api.privacy.com/v1
Auth Header: Authorization: api-key YOUR_API_KEY
Content-Type: application/json
All monetary amounts are in cents (e.g., $25.00 = 2500).
Create a Card
POST https://api.privacy.com/v1/cards
{
"type": "SINGLE_USE",
"memo": "Domain purchase - example.com",
"spend_limit": 2500,
"spend_limit_duration": "TRANSACTION",
"state": "OPEN"
}
Parameters:
| Field | Required | Description |
|---|---|---|
type |
Yes | SINGLE_USE (auto-closes after one charge), MERCHANT_LOCKED (locks to first merchant), DIGITAL_WALLET (Apple/Google Pay) |
memo |
No | Label for the card (what it's for) |
spend_limit |
No | Max spend in cents. Must be whole dollars (e.g., 2500 not 2550) |
spend_limit_duration |
No | TRANSACTION (per charge), MONTHLY, ANNUALLY, FOREVER |
state |
No | OPEN (ready to use) or PAUSED |
exp_month |
No | Two-digit expiry month (auto-generated if omitted) |
exp_year |
No | Four-digit expiry year (auto-generated if omitted) |
Response includes: pan (16-digit card number), cvv, exp_month, exp_year, token (card ID), last_four.
Update a Card
PATCH https://api.privacy.com/v1/cards/{card_token}
{
"state": "PAUSED",
"spend_limit": 5000,
"memo": "Updated memo"
}
Can update: state, memo, spend_limit, spend_limit_duration, funding_token.
Setting state to CLOSED is permanent and cannot be undone.
Get Card(s)
GET https://api.privacy.com/v1/cards/{card_token}
GET https://api.privacy.com/v1/cards
GET https://api.privacy.com/v1/cards?begin=2024-01-01&end=2024-12-31&page=1&page_size=50
Query parameters: begin, end (date filters), page, page_size (pagination).
List Transactions
GET https://api.privacy.com/v1/transactions?card_token={token}&result=APPROVED&page=1&page_size=50
Query parameters:
| Field | Description |
|---|---|
card_token |
Filter by card |
result |
APPROVED or decline reason |
page |
Page number (1-indexed) |
page_size |
Results per page |
begin |
Start date (YYYY-MM-DD) |
end |
End date (YYYY-MM-DD) |
Transaction statuses: PENDING, SETTLING, SETTLED, VOIDED, BOUNCED, DECLINED
Step-by-Step Instructions
Creating a Card for an Agent Purchase
- Determine the amount needed (round up to whole dollars)
- Choose card type:
- One-time purchase? Use
SINGLE_USE - Recurring at one merchant (e.g., subscription)? Use
MERCHANT_LOCKED
- One-time purchase? Use
- Create the card and extract only the fields you need. Never log or print the full API response — it contains the full card number (PAN) and CVV which must not appear in chat logs or transcripts.
# Create card and extract only safe fields for logging
RESPONSE=$(curl -s https://api.privacy.com/v1/cards \
-X POST \
-H "Authorization: api-key $PRIVACY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"type": "SINGLE_USE",
"memo": "Purpose of purchase",
"spend_limit": AMOUNT_IN_CENTS,
"spend_limit_duration": "TRANSACTION",
"state": "OPEN"
}')
# Log only safe fields (no PAN/CVV)
echo "$RESPONSE" | python3 -c "
import sys, json
card = json.load(sys.stdin)
print(json.dumps({
'token': card.get('token'),
'last_four': card.get('last_four'),
'exp_month': card.get('exp_month'),
'exp_year': card.get('exp_year'),
'spend_limit': card.get('spend_limit'),
'state': card.get('state'),
'memo': card.get('memo')
}, indent=2))
"
- When you need the full card details for checkout, extract them in a separate step that is not logged to chat. Use the card details directly in the browser tool or API call without printing them.
# Extract card details for checkout (DO NOT print to chat)
PAN=$(echo "$RESPONSE" | python3 -c "import sys,json; print(json.load(sys.stdin)['pan'])")
CVV=$(echo "$RESPONSE" | python3 -c "import sys,json; print(json.load(sys.stdin)['cvv'])")
EXP_MONTH=$(echo "$RESPONSE" | python3 -c "import sys,json; print(json.load(sys.stdin)['exp_month'])")
EXP_YEAR=$(echo "$RESPONSE" | python3 -c "import sys,json; print(json.load(sys.stdin)['exp_year'])")
- Use these card details to complete the purchase (via browser tool or API)
- After purchase, verify with the transactions endpoint
Checking a Card's Status
curl -s https://api.privacy.com/v1/cards/CARD_TOKEN \
-H "Authorization: api-key $PRIVACY_API_KEY"
Pausing a Card (Temporarily Disable)
curl -s https://api.privacy.com/v1/cards/CARD_TOKEN \
-X PATCH \
-H "Authorization: api-key $PRIVACY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"state": "PAUSED"}'
Closing a Card (Permanent)
curl -s https://api.privacy.com/v1/cards/CARD_TOKEN \
-X PATCH \
-H "Authorization: api-key $PRIVACY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"state": "CLOSED"}'
Viewing Recent Transactions
curl -s "https://api.privacy.com/v1/transactions?page=1&page_size=10" \
-H "Authorization: api-key $PRIVACY_API_KEY"
Safety Rules
- Always confirm the purchase amount and purpose with the user before creating a card, unless the user has pre-approved the spend (e.g., "buy this domain" with a known price).
- Use
SINGLE_USEby default. Only useMERCHANT_LOCKEDif explicitly needed for recurring charges. - Set the spend limit as close to the expected amount as possible. Round up to the next whole dollar, but don't over-allocate (e.g., $12.99 item = $13.00 = 1300 cents).
- Close or pause cards after use.
SINGLE_USEcards auto-close, butMERCHANT_LOCKEDcards stay open. Close them when no longer needed. - Never log, print, or display the full PAN or CVV in chat, logs, or tool output. The raw API response contains sensitive card data (PAN, CVV) that must not appear in transcripts. Always parse the response and extract only safe fields (token, last_four, memo, spend_limit, state) for logging. Use full card details only in the checkout step, never echoed to chat.
- Include a descriptive memo on every card so the user can identify what it was for in their Privacy.com dashboard.
Output Format
When creating a card, report to the user:
Created Privacy.com card (****1234)
Type: Single-use
Limit: $25.00
Memo: Domain purchase - example.com
Status: Ready to use
When listing transactions:
Recent transactions:
1. $12.99 at NAMECHEAP.COM - SETTLED (Jan 15, 2024)
Card: ****1234 (Domain purchase)
2. $49.00 at GITHUB.COM - PENDING (Jan 14, 2024)
Card: ****5678 (GitHub Pro subscription)
Error Handling
- 401 Unauthorized: API key is invalid or missing. Check
PRIVACY_API_KEYenv var. - 403 Forbidden: Account may need verification or doesn't have API access.
- 429 Rate Limited: Back off and retry after a short delay.
- Card creation fails: May have hit the monthly card limit for the plan tier. Inform the user.
- Amount not in whole dollars: The API requires spend_limit in whole-dollar increments (in cents). Round up.
Sandbox Testing
For testing without real money, use the sandbox environment:
- Base URL:
https://sandbox.privacy.com/v1 - Simulate transactions:
POST https://sandbox.privacy.com/v1/simulate/authorizeandPOST https://sandbox.privacy.com/v1/simulate/clearing - Sandbox cards work identically to production but no real charges occur.
Data Source
Privacy.com Developer API - RESTful API, requires API key from a Privacy.com account.
More from dylanfeltus/skills
producthunt
Search Product Hunt launches, products, and makers via the GraphQL V2 API. Use when the user asks about Product Hunt launches, trending products, or wants to research a product's reception. Requires a free developer token (~2 min setup).
186visual-qa
Use vision models to self-review screenshots against design intent. Catches spacing issues, alignment problems, color inconsistencies, responsive bugs, and accessibility gaps. Use when reviewing designs, comparing implementations to mockups, or doing pre-ship QA.
183creative-direction
Image prompt templates, model selection guidance, and anti-generic patterns for generating visual assets. Use when the user needs AI-generated images for landing pages, marketing, or products. Covers hero images, feature illustrations, OG cards, icons, and backgrounds.
134design-tokens
Generate type scales, color palettes, spacing systems, WCAG contrast checks, and dark mode derivations with math. Use when setting up a design system, creating tokens, or building a Tailwind/CSS theme. Outputs CSS custom properties, Tailwind config, or JSON tokens.
130trademark-search
Search the USPTO trademark database to check name availability and get registration details. Use when the user wants to check if a name is trademarked, research trademark availability, or look up registration status. No API key required.
114motion-design-patterns
Framer Motion (Motion) animation patterns for React — springs, staggers, layout animations, micro-interactions, scroll effects, and page transitions. Use when building or improving UI animations, adding polish, or making interfaces feel premium.
109