Skip to main content
GET
/
projects
/
me
cURL
curl https://api.neuraldraft.io/v1/projects/me \
  -H "Authorization: Bearer ndsk_live_yourkey"
{
  "id": "prj_2NfQmBcKpXY8",
  "name": "Lakeside Yoga",
  "slug": "lakeside-yoga",
  "industry": "wellness",
  "default_language": "en",
  "target_languages": [
    "en",
    "fr",
    "de"
  ],
  "timezone": "Europe/London",
  "plan": "hobby",
  "created_at": "2026-02-14T09:31:18Z"
}

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

The project for this API key.

id
string
required
Example:

"prj_2NfQmBcKpXY8"

name
string
required
Example:

"Lakeside Yoga"

slug
string
required
Example:

"lakeside-yoga"

default_language
string
required
Example:

"en"

target_languages
string[]
required
Example:
["en", "fr", "de"]
plan
enum<string>
required
Available options:
free,
hobby,
build,
scale,
enterprise
Example:

"hobby"

created_at
string<date-time>
required
industry
string | null
Example:

"wellness"

timezone
string
Example:

"Europe/London"