Skip to main content
GET
/
node-apps
/
{id}
Get a node app by version ID
curl --request GET \
  --url https://api.krea.ai/node-apps/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "author_id": "<string>",
  "workspace_id": "<string>",
  "name": "<string>",
  "slug": "<string>",
  "description": "<string>",
  "scope": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "last_version_id": "<string>",
  "version_created_at": "<string>",
  "username": "<string>",
  "example_outputs": [
    "<string>"
  ],
  "input_openapi_schema": {
    "type": "<string>",
    "properties": {},
    "required": [
      "<string>"
    ]
  },
  "output_openapi_schema": {
    "type": "<string>",
    "properties": {},
    "required": [
      "<string>"
    ]
  },
  "input_key_mapping": {},
  "output_key_mapping": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Node app version ID

Response

Node app details

Node app response schema

id
string
required

Unique identifier for the node app

author_id
string
required

ID of the node app author

workspace_id
string
required

ID of the workspace that owns the node app

name
string
required

Name of the node app

slug
string
required

URL-friendly identifier for the node app

description
string
required

Description of the node app

scope
string
required

Visibility scope: "public", "user", or "workspace"

created_at
string
required

Creation timestamp

updated_at
string
required

Last update timestamp

last_version_id
string
required

ID of the latest version of the node app

version_created_at
string | null
required

Creation timestamp of the latest version

username
string
required

Username of the node app creator

example_outputs
string[] | null
required

Example output URLs

input_openapi_schema
object
required

OpenAPI 3.1 JSON Schema for input parameters

output_openapi_schema
object
required

OpenAPI 3.1 JSON Schema for output values

input_key_mapping
object
required

Maps OpenAPI input keys to internal keys for execution

output_key_mapping
object
required

Maps internal output keys (nodeId-handleId) to API keys