POST
/
v1
/
observe
/
workflows
curl --request POST \
  --url https://api.acme.rungalileo.io/v1/observe/workflows \
  --header 'Content-Type: application/json' \
  --header 'Galileo-API-Key: <api-key>' \
  --data '{
  "project_name": "my-observe-project",
  "workflows": [
    {
      "created_at_ns": 1744827335338709200,
      "duration_ns": 0,
      "input": "who is a smart LLM?",
      "metadata": {},
      "name": "llm",
      "output": "I am!",
      "type": "llm"
    }
  ]
}'
{
  "message": "<string>",
  "project_id": "<string>",
  "project_name": "<string>",
  "workflows_count": 123,
  "records_count": 123
}

Authorizations

Galileo-API-Key
string
header
required

Body

application/json
workflows
object[]
required

List of workflows to log.

project_id
string | null

Project ID for the Observe project.

project_name
string | null

Project name for the Observe project.

Response

200
application/json
Successful Response
message
string
required
project_id
string
required
project_name
string
required
workflows_count
integer
required
records_count
integer
required