Skip to main content
POST
/
tags
cURL
curl -X POST https://api.neuraldraft.io/v1/tags \
  -H "Authorization: Bearer ndsk_live_yourkey" \
  -H "Content-Type: application/json" \
  -d '{"name":"breathwork"}'
{
  "id": 21,
  "name": "breathwork",
  "slug": "breathwork"
}

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.

Body

application/json
name
string
required
Example:

"breathwork"

Response

Created.

id
integer
required
Example:

21

name
string
required
Example:

"breathwork"

slug
string
required
Example:

"breathwork"