observe
Get Workflows
Overview
Getting Started
SDK/API
- Python SDK Reference
- TypeScript SDK Reference
How-to Guides
- Overview
- Conversational AI
- Retrieval-Augmented Generation
- Agentic AI
Cookbooks
- Use Cases
- Features
Integrations
Concepts
- Metrics
- Projects
- Logging
- Datasets
- Annotations
- Experiments
- Playground
API Reference
- health
- auth
- evaluate
- observe
- protect
- trace
- log_stream
- experiment
- feedback
- API Reference
References
observe
Get Workflows
Get workflows for a specific run in an Observe project.
POST
/
v1
/
observe
/
projects
/
{project_id}
/
workflows
curl --request POST \
--url https://api.galileo.ai/v1/observe/projects/{project_id}/workflows \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"starting_token": 0,
"limit": 100,
"filters": [
{
"name": "user_metadata",
"operator": "one_of",
"key": "<string>",
"value": "<string>"
}
]
}'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"workflows": [
{
"type": "workflow",
"input": "<string>",
"output": "<string>",
"name": "",
"created_at_ns": 123,
"duration_ns": 0,
"metadata": {},
"status_code": 123,
"ground_truth": "<string>",
"root_workflow_id": "<string>",
"workflow_id": "<string>",
"step_id": "<string>",
"steps": [
{}
],
"metrics": [
{
"name": "<string>",
"value": "<any>"
}
]
}
]
}
Authorizations
Path Parameters
Body
application/json
Response
200
application/json
Successful Response
Response model for workflow evaluation results
curl --request POST \
--url https://api.galileo.ai/v1/observe/projects/{project_id}/workflows \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"starting_token": 0,
"limit": 100,
"filters": [
{
"name": "user_metadata",
"operator": "one_of",
"key": "<string>",
"value": "<string>"
}
]
}'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"workflows": [
{
"type": "workflow",
"input": "<string>",
"output": "<string>",
"name": "",
"created_at_ns": 123,
"duration_ns": 0,
"metadata": {},
"status_code": 123,
"ground_truth": "<string>",
"root_workflow_id": "<string>",
"workflow_id": "<string>",
"step_id": "<string>",
"steps": [
{}
],
"metrics": [
{
"name": "<string>",
"value": "<any>"
}
]
}
]
}