academy-skill

Retrieve Binance Academy glossary, courses, and articles through intent-driven API search.

1.0k|213|Updated Mar 3, 2026
One-click install
npx skills add https://github.com/binance/binance-skills-hub --skill academy-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: academy-skill
Source: https://github.com/binance/binance-skills-hub/tree/main/skills/binance/academy-skill
Command: npx skills add https://github.com/binance/binance-skills-hub --skill academy-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

Users asking crypto education questions in chat get generic or unreliable answers; this Skill grounds responses in Binance Academy's official educational content (Glossary, Courses, Learn & Earn, Articles) with real, clickable Academy URLs instead of invented information.

Core Features & Use Cases

  • Intent-Driven Content Retrieval: Detects four user intents (Knowledge Q&A, Risk Education, Learning Plan, Learn & Earn) and routes each to the right backend endpoint, including a parallel searchAll aggregator that picks the best match by tier.
  • Learning Plan Orchestration: Builds structured multi-day learning paths via a 3-step chain (searchResource → resolveParentTrack → getTrackOutline) that expands a topic into a Track → Course → Module tree.
  • Risk Education with Mandatory Disclaimers: Answers high-risk trading questions (leverage, all-in, scams) with Academy-cited risk warnings and never gives investment advice.
  • Use Case: A user asks "What is gas fee?" in Chinese; the Skill extracts the keyword, queries the Academy API, and returns a paraphrased definition with the official glossary link in the user's language.

Quick Start

Ask the agent a crypto concept question like "What is gas fee?" and it will call the Academy search script and return a paraphrased answer with an official Academy link.

Frequently Asked Questions about academy-skill

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

FAQPage Schema
How do I get Binance Academy content in an AI chat agent?

Load this Skill and ask a natural-language question like "What is gas fee?". The agent detects the intent, runs the bundled Node.js script against Academy's public search APIs, and returns a paraphrased answer with an official Academy link.

How to build a crypto learning plan with Binance Academy?

Ask for a learning path, e.g. "Build me a 5-day Bitcoin plan". The Skill runs a 3-step orchestration (searchResource, resolveParentTrack, getTrackOutline) that expands the topic into a Track with ordered Courses and Modules, formatted as a day-by-day plan.

Does the Academy API require authentication or API keys?

No. All six endpoints under /v1/public/bigdata/academy-skill/ are public and require no credentials. Rate limiting returns HTTP 429 with code 000003, which should be treated as transient with backoff.

What languages does Binance Academy search support?

The glossary, Learn & Earn, and resource endpoints accept 35 language codes including zh and en. The articles endpoint supports a different set of 41 codes and excludes zh, zt, and ja, so the script falls back to English for those languages.

Why does a Chinese sentence query return no Academy results?

The backend full-text search does no CJK word segmentation, so raw Chinese sentences rarely match. Extract the topic noun and translate it to its canonical English term before searching, except for bare CJK concept nouns which can be sent raw.

Can this Skill give trading or investment advice?

No. The Skill is educational only and explicitly forbids investment advice, return promises, and fabricated URLs. High-risk trading questions are answered with Academy-cited risk education plus a mandatory disclaimer block.