Ramp hello world
Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/ramp-pack/skills/ramp-hello-world
425 plugins, 2,810 skills, 200 agents for Claude Code. Open-source marketplace at tonsofskills.com with the ccpi CLI package manager.
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill ramp-hello-worldAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Ramp hello world \u2014 corporate card and expense management API integration. \ Use when working with Ramp for card management, expenses, or accounting sync. \ Trigger with phrases like "ramp hello world", "ramp-hello-world", "corporate\ \ card API".
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.2 KB, as published. Nobody here has run it
Ramp Hello World
Overview
List cards, get transactions, and check user details using the Ramp API.
Prerequisites
- Completed
ramp-install-authwith valid access token
Instructions
Step 1: List Virtual Cards
resp = requests.get(f"{BASE}/cards", headers=headers, params={"page_size": 10})
for card in resp.json()["data"]:
print(f"Card: {card['display_name']} — Limit: ${card['spending_restrictions']['amount']/100:.2f}")
print(f" Status: {card['state']}, Last4: {card['last_four']}")
Step 2: Get Recent Transactions
resp = requests.get(f"{BASE}/transactions", headers=headers, params={
"start_date": "2026-01-01",
"page_size": 10,
})
for tx in resp.json()["data"]:
print(f"${tx['amount']/100:.2f} at {tx['merchant_name']} — {tx['sk_category_name']}")
Step 3: List Users
resp = requests.get(f"{BASE}/users", headers=headers, params={"page_size": 10})
for user in resp.json()["data"]:
print(f" {user['first_name']} {user['last_name']} — {user['role']}")
Output
- Cards listed with limits and status
- Recent transactions with merchant details
- Users with role information
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Empty results | No data in sandbox | Create test cards first |
403 Forbidden | Insufficient permissions | Check API app permissions |
400 Bad date format | Wrong date format | Use ISO 8601: YYYY-MM-DD |
Resources
Next Steps
Issue virtual cards: ramp-core-workflow-a