Skip to main content
GET
/
product-categories
cURL
curl https://api.neuraldraft.io/v1/product-categories \
  -H "Authorization: Bearer ndsk_live_yourkey"
{
  "data": [
    {
      "id": 4,
      "name": "Studio essentials",
      "slug": "studio-essentials",
      "parent_id": null,
      "is_active": true,
      "children": [
        {
          "id": 5,
          "name": "Blocks",
          "slug": "blocks",
          "parent_id": 4,
          "is_active": true
        },
        {
          "id": 6,
          "name": "Mats",
          "slug": "mats",
          "parent_id": 4,
          "is_active": true
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.neuraldraft.io/llms.txt

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

Authorizations

Authorization
string
header
required

Project API key. Pass as Authorization: Bearer ndsk_live_.... Manage keys via /projects/me/api-keys. Test-mode keys use the ndsk_test_ prefix.

Response

Category tree.

data
object[]
required