Skip to main content
POST
/
v1
/
repo
Create Repo
curl --request POST \
  --url http://localhost:8080/v1/repo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "repo_name": "<string>",
  "base_model": "Qwen/Qwen3-32B"
}
'
{
  "base_model": "Qwen/Qwen3-32B",
  "repo_name": "my-project"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-User-Id
string | null

User ID override via header (requires master API key)

Query Parameters

user_id
string | null

User ID override (requires master API key)

Body

application/json

Repository create model

repo_name
string
required

Name of the repository

base_model
string | null
default:Qwen/Qwen3-32B

Base model for the repository (optional)

Response

Repository created successfully

Repository response model

repo_name
string
required

Repository name

base_model
string
required

Base model identifier