Coinbase Automation

Automate cryptocurrency wallet management and portfolio data retrieval via the Coinbase CDP SDK.

74.2k|8.5k|Updated Oct 17, 2025
One-click install
npx skills add https://github.com/ComposioHQ/awesome-claude-skills --skill coinbase-automation
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Coinbase Automation
Source: https://github.com/ComposioHQ/awesome-claude-skills/tree/main/composio-skills/coinbase-automation
Command: npx skills add https://github.com/ComposioHQ/awesome-claude-skills --skill coinbase-automation

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill removes the manual overhead of tracking cryptocurrency assets and managing wallet operations, allowing for programmatic oversight of digital portfolios.

Core Features & Use Cases

  • Wallet Inventory Management: List and paginate through all cryptocurrency wallets associated with your account.
  • Portfolio Auditing: Aggregate balance data and metadata across multiple pages for comprehensive reporting.
  • Monitoring: Detect new wallet additions or balance changes through automated periodic checks.

Quick Start

Use the coinbase automation skill to list all wallets in my portfolio with a limit of 50.

Frequently Asked Questions about Coinbase Automation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list all my Coinbase wallets?

Use the COINBASE_LIST_WALLETS tool to retrieve your wallet inventory. You can specify a limit and use cursor-based pagination to iterate through all available wallets.

How does pagination work for wallet lists?

Pagination uses cursor-based navigation where you provide the ID of the last wallet from the previous page as the starting_after parameter to fetch the next set of results.

Can I monitor my wallet for new transactions?

You can monitor wallets by periodically calling COINBASE_LIST_WALLETS with a descending sort order and comparing the returned wallet IDs against your previously stored records.

What are the limitations of the wallet list tool?

The tool supports a maximum limit of 100 wallets per request. You must implement a loop to handle pagination if your account contains more than 100 wallets.