bknd-api-discovery
Use when exploring Bknd's auto-generated API endpoints. Covers REST endpoint patterns, route listing, module base paths, SDK method mapping, admin panel API explorer, and understanding the API structure.
npx skills add majiayu000/claude-skill-registry --skill bknd-api-discovery-cameronapak-freedom-stack-v3-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# API Discovery Explore and understand Bknd's auto-generated REST API endpoints. ## Prerequisites - Running Bknd instance (local or deployed) - Access to admin panel (optional but helpful) - Basic understanding of REST APIs ## When to Use UI Mode - Browsing available entities and their fields - Viewing schema structure visually - Quick endpoint exploration via browser **UI steps:** Admin Panel > Data > Entities ## When to Use Code Mode - Listing all registered routes programmatically - Understanding endpoint patterns for integration - Debugging route registration issues - Building API documentation ## Understanding Bknd's API Structure Bknd auto-generates REST endpoints for all configured modules: ``` ┌─────────────────────────────────────────────────────────────┐ │ Bknd API Structure │ ├─────────────────────────────────────────────────────────────┤ │ /api/data → CRUD for all entities │ │ /api/auth → Authentication (login, register, logout) │ │ /api/media → File uploads and serving │ │ /api/system → System operations │ │ /flow → Flow management and triggers │ │ /admin → Admin UI (if enabled) │ └─────────────────────────────────────────────────────────────┘ ``` ## Code Approach ###
- Prerequisites
- When to Use UI Mode
- When to Use Code Mode
- Understanding Bknd's API Structure
- Code Approach
- Step 1: List All Routes (CLI)
- Step 2: Data API Endpoints
- Step 3: Auth API Endpoints
- Step 4: Media API Endpoints
- Step 5: Flow Endpoints
- Step 6: Programmatic Route Discovery
- Step 7: Discover Entity Schema
- Step 8: Response Format Discovery
- UI Approach: Admin Panel
bknd debug routes List all posts curl http://localhost:7654/api/data/posts Get post by ID curl http://localhost:7654/api/data/posts/1 Get with query params curl "http://localhost:7654/api/data/posts?limit=10&sort[created_at]=desc" Get with relations curl "http://localhost:7654/api/data/posts?with[]=author&with[]=comments" Complex query via POST
What does the bknd-api-discovery skill do?
Use when exploring Bknd's auto-generated API endpoints. Covers REST endpoint patterns, route listing, module base paths, SDK method mapping, admin panel API explorer, and understanding the API structure.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill bknd-api-discovery-cameronapak-freedom-stack-v3-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
