Supercharge your AI agent with the power of the Trading 212 API
npx claudepluginhub trading212-labs/agent-skillsSkill for interacting with the Trading 212 API - portfolio management, order placement, position tracking, and historical data analysis
An AgentSkills plugin that wraps the Trading 212 API and exposes its capabilities in a tool-friendly format for AI assistants (e.g. OpenClaw, Claude Code, and others). The plugin provides skills that teach AI agents how to work with the API: retrieving portfolio and transaction history, placing and managing orders, querying instruments, and related operations—with consistent, schema-based inputs and outputs, authentication and error mapping, and rate-limit handling.
Supports both Demo (paper trading) and Live (real money) Trading 212 environments. The Trading 212 API is in beta and under active development; endpoints or behaviour may change.
npx skills add trading212-labs/agent-skills
/plugin marketplace add https://github.com/trading212-labs/agent-skills.git
/plugin install trading212-api
clawdbot plugins install github:trading212-labs/agent-skills
Rules, Skills, SubagentsAdd Rule on Rules section -> Add from Githubhttps://github.com/trading212-labs/agent-skills.git$skill-installer https://github.com/trading212-labs/agent-skills/tree/master/plugins/trading212-api/skills/trading212-api
Generate API credentials in the Trading 212 app under Settings > API (API Key ID and API Secret). See How to get your Trading 212 API key for step-by-step instructions. Store them securely and use only in a trusted, secure environment. See Credentials and security below.
Single account (Invest or Stocks ISA):
# Invest or Stocks ISA
export T212_API_KEY="your-api-key"
export T212_API_SECRET="your-api-secret"
#Environment
export T212_ENV="live" # optional; default is "live"; use "demo" for paper trading
Both accounts (Invest and Stocks ISA): set a key/secret pair per account.
# Invest
export T212_API_KEY_INVEST="your-invest-api-key"
export T212_API_SECRET_INVEST="your-invest-api-secret"
# Stocks ISA
export T212_API_KEY_STOCKS_ISA="your-stocks-isa-api-key"
export T212_API_SECRET_STOCKS_ISA="your-stocks-isa-api-secret"
#Environment
export T212_ENV="live" # optional; default is "live"; use "demo" for paper trading
API keys are environment-specific (LIVE vs DEMO). For details, see Trading 212 API Documentation.