Macademia Tree logo Macademia Tree
Sign In

Sub-Disciplines

Search sub-disciplines

PRO

Search sub-disciplines by name. Optionally filter by parent discipline. Returns matching sub-disciplines ordered alphabetically.

GET /api/v2/sub_disciplines?search=:query

Authentication

Requires Bearer token in the Authorization header.

Query Parameters

search string required

Search query — matches against sub-discipline name

discipline string optional

Filter by parent discipline slug

Response

id uuid

Unique identifier

name string

Sub-discipline name

slug string

URL-safe identifier

description string

Brief description

disciplines array

Parent disciplines

topics_count integer

Number of topics

curl -X GET "https://macademiatree.com/api/v2/sub_disciplines?search=machine+learning" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
[
  {
    "id": "...",
    "name": "Machine Learning",
    "slug": "machine-learning",
    "description": "Algorithms that learn from data",
    "disciplines": [
      {
        "id": "...",
        "name": "Computer Science",
        "slug": "computer-science"
      }
    ],
    "topics_count": 8
  }
]