Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.skilldiscs.com/llms.txt

Use this file to discover all available pages before exploring further.

1. Generate an API key

  1. Open Settings.
  2. Scroll to API Keys.
  3. Name your key (e.g. claude-agent) → Generate.
  4. Copy the sk_... value — it is shown once.
Treat your API key like a password. Anyone holding it can read every Disk you own. Rotate immediately if leaked.

2. Make your first request

Search your library for “quantum physics”:
curl -X POST https://skilldiscs.com/api/v1/search \
  -H "Authorization: Bearer sk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"query": "quantum physics", "limit": 5}'

Response

{
  "results": [
    {
      "disk_public_id": "abc123",
      "disk_title": "Feynman on Quantum Mechanics",
      "section_index": 2,
      "snippet": "...probability amplitudes interfere...",
      "similarity": 0.87
    }
  ]
}

3. Read the full Disk

Pass the disk_public_id from search to fetch the full content:
curl https://skilldiscs.com/api/v1/disks/abc123 \
  -H "Authorization: Bearer sk_your_key_here"

4. Next steps

LLM Agent Integration

Connect to Claude, GPT, or custom agents.

Full API Reference

Every endpoint, parameter, response.