{"id":49873913,"url":"https://github.com/dd3ok/binance-api-skill","last_synced_at":"2026-05-15T11:37:58.289Z","repository":{"id":357028368,"uuid":"1235036271","full_name":"dd3ok/binance-api-skill","owner":"dd3ok","description":"Unofficial Codex/OpenAI skill for Binance Spot REST API: official docs, endpoints, signing, rate limits, filters, errors, and Testnet safety.","archived":false,"fork":false,"pushed_at":"2026-05-11T01:25:42.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-11T02:31:22.882Z","etag":null,"topics":["agent-skill","api-docs","binance","binance-api","binance-spot","codex-skill","crypto-api","openai-skill","spot-rest-api","trading-api"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dd3ok.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-11T00:25:11.000Z","updated_at":"2026-05-11T01:25:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dd3ok/binance-api-skill","commit_stats":null,"previous_names":["dd3ok/binance-api-skill"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/dd3ok/binance-api-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dd3ok%2Fbinance-api-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dd3ok%2Fbinance-api-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dd3ok%2Fbinance-api-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dd3ok%2Fbinance-api-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dd3ok","download_url":"https://codeload.github.com/dd3ok/binance-api-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dd3ok%2Fbinance-api-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33065727,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent-skill","api-docs","binance","binance-api","binance-spot","codex-skill","crypto-api","openai-skill","spot-rest-api","trading-api"],"created_at":"2026-05-15T11:37:55.823Z","updated_at":"2026-05-15T11:37:58.279Z","avatar_url":"https://github.com/dd3ok.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Binance API Skill\n\nUnofficial Codex/OpenAI skill for Binance Spot REST API work. This repository packages a `SKILL.md`, focused references, and small helper scripts so coding agents can implement or debug Binance Spot REST `/api/*` calls with official Binance docs, endpoint routing, signed requests, API keys, HMAC/RSA/Ed25519 signing, `recvWindow`, filters, request weights, rate limits, errors, and Testnet safety in mind.\n\nThis is not an official Binance project and does not provide financial advice.\n\n## Scope\n\n- Covered: Binance Spot REST `/api/*`, especially `/api/v3` market data, signed account endpoints, order endpoints, filters, errors, and Spot Testnet.\n- Not covered: Futures `/fapi`, Delivery `/dapi`, Margin, Wallet `/sapi`, WebSocket APIs, FIX, or SBE. The skill tells agents not to adapt Spot REST rules to those APIs.\n- Source of truth: official Binance documentation and runtime `GET /api/v3/exchangeInfo`; local references are routing notes.\n\n## Install\n\nClone this repository into your Codex skills directory:\n\n```bash\nmkdir -p \"${CODEX_HOME:-$HOME/.codex}/skills\"\ngit clone https://github.com/dd3ok/binance-api-skill.git \\\n  \"${CODEX_HOME:-$HOME/.codex}/skills/binance-api-skill\"\n```\n\nRestart Codex after installing so the skill can be discovered.\n\nThis repository root is intentionally the installable Codex skill package. Runtime skill files are `SKILL.md`, `agents/openai.yaml`, `references/`, and `scripts/`; `README.md` and `LICENSE` are repository-facing files for public GitHub distribution.\n\n## Usage\n\nExample prompt:\n\n```text\nUse $binance-api-skill to implement BTCUSDT 1h klines with official Binance docs.\n```\n\nGood pressure prompts:\n\n- `Implement BTCUSDT 1h klines in Python.`\n- `Why am I getting -1022 invalid signature?`\n- `I got -1007 after POST /api/v3/order. Should I retry?`\n- `Use /fapi/v1/order for Binance futures.`\n- `Place a live BTCUSDT market buy order.`\n\nExpected behavior: the agent should verify official docs for exact behavior, prefer public market data when possible, refuse or gate live trading, avoid secret exposure, and reject non-Spot REST scope instead of translating Spot rules to other Binance APIs.\n\n## Contents\n\n- `SKILL.md`: trigger metadata, workflow, safety rules, and response checklist.\n- `references/index.md`: task-to-reference routing.\n- `references/endpoints.md`: compact `/api/v3` endpoint discovery snapshot.\n- `references/*.md`: focused notes for signing, market data, trading, account endpoints, filters, errors, limits, and Testnet.\n- `scripts/extract_official_section.py`: prints one section from official Binance Spot docs.\n- `scripts/verify_hmac_signature.py`: local HMAC payload self-test and non-secret test helper.\n- `evals/prompts.md`: manual pressure prompts for maintainers.\n\n## Official Sources\n\n- Binance Spot REST docs: https://developers.binance.com/docs/binance-spot-api-docs/rest-api\n- Official Binance Spot API docs repo: https://github.com/binance/binance-spot-api-docs\n- Binance developer forum: https://dev.binance.vision\n- Binance API FAQ/rate-limit/WAF context: https://www.binance.com/en/support/faq/detail/360004492232\n\n## License\n\nMIT. This license applies to this repository's original skill files and helper scripts, not to Binance documentation, trademarks, or services.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdd3ok%2Fbinance-api-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdd3ok%2Fbinance-api-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdd3ok%2Fbinance-api-skill/lists"}