Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Create and manage Privacy.com virtual cards. Use for generating single-use cards, merchant-locked cards, listing cards, setting spending limits, pausing/closing cards, and viewing transactions via the Privacy.com API.
Create and manage Privacy.com virtual cards. Use for generating single-use cards, merchant-locked cards, listing cards, setting spending limits, pausing/closing cards, and viewing transactions via the Privacy.com API.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Manage virtual cards via the Privacy.com API.
Sign up for a Privacy.com account Email support@privacy.com to request API access Once approved, you'll receive your API key
export PRIVACY_API_KEY="your-api-key" Environments: Production: https://api.privacy.com/v1 Sandbox: https://sandbox.privacy.com/v1 All requests: Authorization: api-key $PRIVACY_API_KEY
curl -s -X POST "https://api.privacy.com/v1/cards" \ -H "Authorization: api-key $PRIVACY_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "type": "SINGLE_USE", "memo": "One-time purchase", "spend_limit": 5000, "spend_limit_duration": "TRANSACTION" }' | jq
TypeBehaviorSINGLE_USECloses after first transactionMERCHANT_LOCKEDLocks to first merchant, reusable thereUNLOCKEDWorks anywhere (requires issuing access)
ParameterRequiredDescriptiontypeYesSINGLE_USE, MERCHANT_LOCKED, UNLOCKEDmemoNoLabel/descriptionspend_limitNoLimit in centsspend_limit_durationNoTRANSACTION, MONTHLY, ANNUALLY, FOREVERstateNoOPEN (default) or PAUSEDfunding_tokenNoSpecific funding source UUID
{ "token": "card-uuid", "type": "SINGLE_USE", "state": "OPEN", "memo": "One-time purchase", "last_four": "1234", "pan": "4111111111111234", "cvv": "123", "exp_month": "12", "exp_year": "2027", "spend_limit": 5000, "spend_limit_duration": "TRANSACTION", "created": "2024-01-15T10:30:00Z" } Note: pan, cvv, exp_month, exp_year require enterprise access in production. Always available in sandbox.
curl -s "https://api.privacy.com/v1/transactions?card_token={card_token}" \ -H "Authorization: api-key $PRIVACY_API_KEY" | jq
curl -s "https://api.privacy.com/v1/transactions?card_token={card_token}&begin=2024-01-01&end=2024-01-31" \ -H "Authorization: api-key $PRIVACY_API_KEY" | jq
# Only approved curl -s "https://api.privacy.com/v1/transactions?result=APPROVED" \ -H "Authorization: api-key $PRIVACY_API_KEY" | jq # Only declined curl -s "https://api.privacy.com/v1/transactions?result=DECLINED" \ -H "Authorization: api-key $PRIVACY_API_KEY" | jq
ParameterDescriptioncard_tokenFilter by card UUIDresultAPPROVED or DECLINEDbeginOn or after date (YYYY-MM-DD)endBefore date (YYYY-MM-DD)pagePage number (default: 1)page_sizeResults per page (1-1000, default: 50)
{ "token": "txn-uuid", "card_token": "card-uuid", "amount": -2500, "status": "SETTLED", "result": "APPROVED", "merchant": { "descriptor": "NETFLIX.COM", "mcc": "4899", "city": "LOS GATOS", "state": "CA", "country": "USA" }, "created": "2024-01-15T14:22:00Z" }
PENDING โ SETTLING โ SETTLED Also: VOIDED, BOUNCED, DECLINED
curl -s "https://api.privacy.com/v1/cards" \ -H "Authorization: api-key $PRIVACY_API_KEY" | jq
curl -s "https://api.privacy.com/v1/cards/{card_token}" \ -H "Authorization: api-key $PRIVACY_API_KEY" | jq
curl -s -X PATCH "https://api.privacy.com/v1/cards/{card_token}" \ -H "Authorization: api-key $PRIVACY_API_KEY" \ -H "Content-Type: application/json" \ -d '{"state": "PAUSED"}' | jq
curl -s -X PATCH "https://api.privacy.com/v1/cards/{card_token}" \ -H "Authorization: api-key $PRIVACY_API_KEY" \ -H "Content-Type: application/json" \ -d '{"state": "CLOSED"}' | jq
curl -s -X PATCH "https://api.privacy.com/v1/cards/{card_token}" \ -H "Authorization: api-key $PRIVACY_API_KEY" \ -H "Content-Type: application/json" \ -d '{"spend_limit": 10000, "spend_limit_duration": "MONTHLY"}' | jq
CodeMeaningCARD_PAUSEDCard is pausedCARD_CLOSEDCard is closedSINGLE_USE_RECHARGEDSingle-use already usedUNAUTHORIZED_MERCHANTWrong merchant for locked cardUSER_TRANSACTION_LIMITSpend limit exceededINSUFFICIENT_FUNDSFunding source issue See references/api.md for complete field documentation.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.