Skip to main content
GET
/
v0
/
workflows
/
{workflow_id}
Get Workflows By Id
curl --request GET \
  --url https://api.pixxel.space/v0/workflows/{workflow_id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "estimated_cost": 123,
  "name": "<string>",
  "created_by": "<string>",
  "description": "<string>",
  "spec": [
    123
  ],
  "created_at": "<string>",
  "updated_at": "<string>",
  "val_errors": [
    {
      "from": "<string>",
      "to": "<string>",
      "err": "<string>",
      "reason": "<string>",
      "component_name": "<string>"
    }
  ],
  "project_id": "<string>"
}

Authorizations

Authorization
string
header
required

Path Parameters

workflow_id
string
required

Unique UUID identifier for the target workflow

Query Parameters

project_id
string
required

Project identifier that the workflow belongs to

Response

OK

id
string

Unique identifier for the workflow

estimated_cost
integer

Token cost estimated for this workflow

name
string

Display name of the workflow

created_by
string

Identifies the user who created this workflow

description
string

Provides details about the workflow's purpose

spec
integer[]

Contains the raw specification data for the workflow

created_at
string

Timestamp when the workflow was created

updated_at
string

Timestamp when the workflow was last modified

val_errors
object[]

Validation errors encountered with this workflow

project_id
string

Identifier of the project this workflow belongs to

I