Skip to main content
POST
/
api
/
pipelines
Create pipeline
curl --request POST \
  --url https://console.neuronsearchlab.com/api/pipelines \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "context_id": 123,
  "stages_json": [
    {}
  ],
  "is_active": true
}
'
{}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Platform API key issued from Console > Platform API Keys. Format: nsl__.

Body

application/json
name
string
context_id
integer | null
stages_json
object[]
is_active
boolean

Response

Created pipeline

The response is of type object.