Skip to main content
PUT
/
content
/
{key}
cURL
curl -X PUT "https://api.neuraldraft.io/v1/content/hero.headline" \
  -H "Authorization: Bearer ndsk_live_yourkey" \
  -H "Content-Type: application/json" \
  -d '{"lang":"en","value":"Welcome to Lakeside Yoga"}'
{
  "key": "hero.headline",
  "value": "Find your calm, one breath at a time",
  "lang": "en",
  "all_locales": {
    "en": "Find your calm, one breath at a time",
    "fr": "Trouvez votre calme, une respiration à la fois"
  }
}

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.

Path Parameters

key
string
required

Translation key in dot.notation.

Example:

"hero.headline"

Body

application/json
value
string
required
Example:

"Welcome to Lakeside Yoga"

lang
string

BCP-47 language tag. Defaults to project default.

Example:

"en"

Response

Updated value.

key
string
required
Example:

"hero.headline"

value
string
required
Example:

"Find your calm, one breath at a time"

lang
string
required
Example:

"en"

all_locales
object
Example:
{
"en": "Find your calm, one breath at a time",
"fr": "Trouvez votre calme, une respiration à la fois"
}