Skip to main content
POST
/
api
/
folders
/
create-or-get
Create or get folder
curl --request POST \
  --url https://api-prod.nomadicml.com/api/folders/create-or-get \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "scope": "user",
  "org_id": "<string>",
  "description": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "org_id": "<string>",
  "description": "<string>",
  "created_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.nomadicml.com/llms.txt

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

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <NOMADIC_API_KEY>.

Body

application/json
name
string
required
scope
enum<string>
default:user
Available options:
user,
org
org_id
string
description
string

Response

Successful response.

id
string
name
string
org_id
string
description
string
created_at
string