โ† All skills
Tencent SkillHub ยท Developer Tools

Privacy Cards

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/api.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 19 sections Open source page

Privacy Cards

Manage virtual cards via the Privacy.com API.

Getting API Access

Sign up for a Privacy.com account Email support@privacy.com to request API access Once approved, you'll receive your API key

Configuration

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

Create a Card

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

Card Types

TypeBehaviorSINGLE_USECloses after first transactionMERCHANT_LOCKEDLocks to first merchant, reusable thereUNLOCKEDWorks anywhere (requires issuing access)

Create Parameters

ParameterRequiredDescriptiontypeYesSINGLE_USE, MERCHANT_LOCKED, UNLOCKEDmemoNoLabel/descriptionspend_limitNoLimit in centsspend_limit_durationNoTRANSACTION, MONTHLY, ANNUALLY, FOREVERstateNoOPEN (default) or PAUSEDfunding_tokenNoSpecific funding source UUID

Response

{ "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.

All transactions for a card

curl -s "https://api.privacy.com/v1/transactions?card_token={card_token}" \ -H "Authorization: api-key $PRIVACY_API_KEY" | jq

Filter by date range

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

Filter by result

# 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

Query Parameters

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)

Transaction Response

{ "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" }

Transaction Statuses

PENDING โ†’ SETTLING โ†’ SETTLED Also: VOIDED, BOUNCED, DECLINED

List all cards

curl -s "https://api.privacy.com/v1/cards" \ -H "Authorization: api-key $PRIVACY_API_KEY" | jq

Get single card

curl -s "https://api.privacy.com/v1/cards/{card_token}" \ -H "Authorization: api-key $PRIVACY_API_KEY" | jq

Pause a card

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

Close a card (permanent)

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

Update spend limit

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

Common Decline Reasons

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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • references/api.md Docs