Install
openclaw skills install coinbase-openapi-skillOperate Coinbase Advanced Trade REST APIs through UXC with a curated OpenAPI schema, products-first discovery, and explicit JWT bearer auth guidance.
openclaw skills install coinbase-openapi-skillUse this skill to run Coinbase Advanced Trade REST operations through uxc + OpenAPI.
Reuse the uxc skill for shared execution, auth, and error-handling guidance.
uxc is installed and available in PATH.https://api.coinbase.com.https://raw.githubusercontent.com/holon-run/uxc/main/skills/coinbase-openapi-skill/references/coinbase-advanced-trade.openapi.jsonThis skill covers a curated Coinbase Advanced Trade surface for:
This skill does not cover:
Public product endpoints can be read without credentials.
Private account and order endpoints require a Coinbase Advanced Trade bearer JWT. uxc now supports Coinbase's request-scoped JWT flow directly through jwt_bearer_v1, so you can store the API key id and private key in a credential and let uxc mint the short-lived bearer token per request.
Recommended v1 setup:
key_id: organizations/{org_id}/apiKeys/{key_id}private_key: Coinbase exports either -----BEGIN EC PRIVATE KEY----- or -----BEGIN PRIVATE KEY-----; uxc accepts both PEM forms for ES256.api.coinbase.com with a jwt_bearer_v1 signer.uxc auth credential set coinbase-advanced-trade \
--auth-type api_key \
--field key_id=env:COINBASE_KEY_ID \
--field private_key=env:COINBASE_PRIVATE_KEY
uxc auth binding add \
--id coinbase-advanced-trade \
--host api.coinbase.com \
--path-prefix /api/v3/brokerage \
--scheme https \
--credential coinbase-advanced-trade \
--signer-json '{"kind":"jwt_bearer_v1","algorithm":"es256","private_key_field":"private_key","header_typ":"JWT","header_kid_field":"key_id","expires_in_seconds":120,"claims":{"static":{"iss":"cdp"},"from_fields":{"sub":"key_id"},"time":{"nbf":"now","exp":"now_plus_ttl"}},"request_claim":{"name":"uri","format":"string","value_template":"{{request.method}} {{request.host}}{{request.path}}"}}' \
--priority 100
Validate the active mapping when auth looks wrong:
uxc auth binding match https://api.coinbase.com/api/v3/brokerage/accounts
Use the fixed link command by default:
command -v coinbase-openapi-cliuxc link coinbase-openapi-cli https://api.coinbase.com --schema-url https://raw.githubusercontent.com/holon-run/uxc/main/skills/coinbase-openapi-skill/references/coinbase-advanced-trade.openapi.jsoncoinbase-openapi-cli -hInspect operation help before execution:
coinbase-openapi-cli get:/api/v3/brokerage/products -hcoinbase-openapi-cli get:/api/v3/brokerage/accounts -hcoinbase-openapi-cli post:/api/v3/brokerage/orders -hPrefer product reads before private account or order workflows:
coinbase-openapi-cli get:/api/v3/brokerage/products product_type=SPOT limit=20coinbase-openapi-cli get:/api/v3/brokerage/best_bid_ask product_ids=BTC-USD,ETH-USDTreat all order placement and cancellation as high-risk writes.
get:/api/v3/brokerage/productsget:/api/v3/brokerage/products/{product_id}get:/api/v3/brokerage/best_bid_askget:/api/v3/brokerage/accountsget:/api/v3/brokerage/accounts/{account_uuid}post:/api/v3/brokerage/orderspost:/api/v3/brokerage/orders/batch_cancelget:/api/v3/brokerage/orders/historical/{order_id}get:/api/v3/brokerage/orders/historical/batch--text.ok, kind, protocol, data, error.uxc mints a fresh short-lived Coinbase JWT on each private request; do not try to bind a stale pre-generated bearer token when jwt_bearer_v1 is available.post:/api/v3/brokerage/orders and post:/api/v3/brokerage/orders/batch_cancel as high-risk writes.limit values.coinbase-openapi-cli <operation> ... is equivalent to uxc https://api.coinbase.com --schema-url <coinbase_advanced_trade_openapi_schema> <operation> ....references/usage-patterns.mdreferences/coinbase-advanced-trade.openapi.json