bybit-openapi-skill

Operate Bybit V5 public market APIs through UXC with a curated OpenAPI schema, market-first discovery, and explicit private-auth boundary notes.

23 stars

Best use case

bybit-openapi-skill is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Operate Bybit V5 public market APIs through UXC with a curated OpenAPI schema, market-first discovery, and explicit private-auth boundary notes.

Teams using bybit-openapi-skill should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/bybit-api/SKILL.md --create-dirs "https://raw.githubusercontent.com/jiayaoqijia/cryptoskill/main/skills/exchanges/bybit-api/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/bybit-api/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How bybit-openapi-skill Compares

Feature / Agentbybit-openapi-skillStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Operate Bybit V5 public market APIs through UXC with a curated OpenAPI schema, market-first discovery, and explicit private-auth boundary notes.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Bybit V5 Skill

Use this skill to run Bybit V5 market-data operations through `uxc` + OpenAPI.

Reuse the `uxc` skill for shared execution, auth, and error-handling guidance.

## Prerequisites

- `uxc` is installed and available in `PATH`.
- Network access to:
  - `https://api.bybit.com`
  - optionally `https://api-testnet.bybit.com`
- Access to the curated OpenAPI schema URL:
  - `https://raw.githubusercontent.com/holon-run/uxc/main/skills/bybit-openapi-skill/references/bybit-v5.openapi.json`

## Scope

This skill covers a curated Bybit V5 public market surface for:

- server time
- instruments metadata
- tickers
- order book snapshots
- kline reads

This skill does **not** cover:

- private account endpoints in v1
- private order placement or cancellation in v1
- copy trading, earn, broker, or asset management product families

## Authentication

Public market endpoints in this skill do not require credentials.

Bybit private APIs use provider-specific header signing that is not yet packaged as a generic `uxc` signer flow. Keep this v1 skill public-data-only until a reusable Bybit signer path exists.

## Region Guardrail

Bybit's official docs note region and IP restrictions. If requests fail unexpectedly, verify that the current execution environment is permitted for Bybit API access before debugging the schema or parameters.

## Core Workflow

1. Use the fixed link command by default:
   - `command -v bybit-openapi-cli`
   - If missing, create it:
     `uxc link bybit-openapi-cli https://api.bybit.com --schema-url https://raw.githubusercontent.com/holon-run/uxc/main/skills/bybit-openapi-skill/references/bybit-v5.openapi.json`
   - `bybit-openapi-cli -h`

2. Inspect operation help before execution:
   - `bybit-openapi-cli get:/v5/market/time -h`
   - `bybit-openapi-cli get:/v5/market/instruments-info -h`
   - `bybit-openapi-cli get:/v5/market/tickers -h`

3. Prefer narrow spot reads first:
   - `bybit-openapi-cli get:/v5/market/tickers category=spot symbol=BTCUSDT`
   - `bybit-openapi-cli get:/v5/market/orderbook category=spot symbol=BTCUSDT limit=20`

## Operations

- `get:/v5/market/time`
- `get:/v5/market/instruments-info`
- `get:/v5/market/tickers`
- `get:/v5/market/orderbook`
- `get:/v5/market/kline`

## Guardrails

- Keep automation on the JSON output envelope; do not use `--text`.
- Parse stable fields first: `ok`, `kind`, `protocol`, `data`, `error`.
- Treat this v1 skill as read-only.
- Use `category=spot` unless the user explicitly needs another market family and has checked the symbol format.
- `bybit-openapi-cli <operation> ...` is equivalent to `uxc https://api.bybit.com --schema-url <bybit_v5_openapi_schema> <operation> ...`.

## References

- Usage patterns: `references/usage-patterns.md`
- Curated OpenAPI schema: `references/bybit-v5.openapi.json`
- Official Bybit V5 docs: https://bybit-exchange.github.io/docs/v5/guide

Related Skills

mexc-openapi-skill

23
from jiayaoqijia/cryptoskill

Operate MEXC Spot REST APIs through UXC with a curated OpenAPI schema, HMAC query signing, and separate public/signed workflow guardrails.

kucoin-openapi-skill

23
from jiayaoqijia/cryptoskill

Operate KuCoin public exchange market APIs through UXC with a curated OpenAPI schema, market-first discovery, and explicit private-auth boundary notes.

kraken-openapi-skill

23
from jiayaoqijia/cryptoskill

Operate Kraken public market APIs through UXC with a curated OpenAPI schema, market-first discovery, and explicit private-auth boundary notes.

coinbase-openapi-skill

23
from jiayaoqijia/cryptoskill

Operate Coinbase Advanced Trade REST APIs through UXC with a curated OpenAPI schema, products-first discovery, and explicit JWT bearer auth guidance.

bybit-trading

23
from jiayaoqijia/cryptoskill

Bybit AI Trading Skill — Trade on Bybit using natural language. Covers spot, derivatives, earn, and more. Works with Claude, ChatGPT, OpenClaw, and any AI assistant.

bybit-futures

23
from jiayaoqijia/cryptoskill

Complete Bybit USDT perpetual futures trading system with risk management, paper trading, and live execution. Use when building a crypto futures trading bot, connecting to Bybit API, implementing stop-loss/take-profit, managing leverage and position sizing, paper trading strategies, backtesting, or deploying a WebSocket-based real-time trading system. Supports EMA crossover, RSI, and custom strategy templates.

bybit-ai-skills

23
from jiayaoqijia/cryptoskill

253 API endpoints for trading, derivatives, earn products on Bybit. Comprehensive AI skills covering spot, futures, options, and institutional features.

bitget-openapi-skill

23
from jiayaoqijia/cryptoskill

Operate Bitget public exchange market APIs through UXC with a curated OpenAPI schema, market-first discovery, and explicit private-auth boundary notes.

binance-web3-openapi-skill

23
from jiayaoqijia/cryptoskill

Operate Binance Web3 public market and research APIs through UXC with a curated OpenAPI schema. Use when tasks need token search, token metadata/market snapshots, address holdings, rankings, token audit, or smart money signals on Binance Web3.

binance-spot-openapi-skill

23
from jiayaoqijia/cryptoskill

Operate Binance Spot market, account, and order APIs through UXC with a curated OpenAPI schema, Binance query signing, and separate mainnet/testnet link flows.

ai-bybit-trader

23
from jiayaoqijia/cryptoskill

🤖 Train your own AI agent to trade crypto 24/7 on Bybit. Free skill for OpenClaw.

ai-bybit-trade

23
from jiayaoqijia/cryptoskill

🤖 Train your own AI agent to trade crypto 24/7 on Bybit. Free skill for OpenClaw.