Macademia Tree logo Macademia Tree
Sign In

Domains

List all domains

Returns all academic domains ordered alphabetically by name. Domains are the top-level categories of the taxonomy (e.g., Natural Sciences, Formal Sciences, Humanities).

GET /api/v2/domains

Authentication

Requires Bearer token in the Authorization header.

Response

id uuid

Unique identifier

name string

Domain name

slug string

URL-safe identifier

description string

Brief description

disciplines_count integer

Number of disciplines in this domain

curl -X GET "https://macademiatree.com/api/v2/domains" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
[
  {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "Natural Sciences",
    "slug": "natural-sciences",
    "description": "Study of the physical world",
    "disciplines_count": 12
  }
]