Overview
Get Started
How-to Guides
- Overview
- Logging Basics
- Agentic AI
- Conversational AI
- Luna 2
- Metrics
- Retrieval-Augmented Generation
Cookbooks
- Overview
- Agents
- RAG
Integrations
Concepts
- Metrics
- Luna 2
- Projects
- Logging
- Datasets
- Annotations
- Experiments
- Playground
SDK/API Reference
- Python SDK
- TypeScript SDK
- API
- health
- auth
- system_users
- api_keys
- annotation
- datasets
- experiment
- feedback
- groups
- log_stream
- projects
- protect
- data
- trace
- users
trace
Get Aggregated Trace View
POST
/
v2
/
projects
/
{project_id}
/
traces
/
aggregated
Copy
Ask AI
curl --request POST \
--url https://api.galileo.ai/v2/projects/{project_id}/traces/aggregated \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"log_stream_id": "<string>"
}'
Copy
Ask AI
{
"nodes": [
{
"id": "<string>",
"name": "<string>",
"type": "llm",
"occurrences": 123,
"parent_id": "<string>",
"has_children": true
}
],
"edges": [
{
"source": "<string>",
"target": "<string>",
"weight": 123
}
]
}
Authorizations
Path Parameters
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.galileo.ai/v2/projects/{project_id}/traces/aggregated \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"log_stream_id": "<string>"
}'
Copy
Ask AI
{
"nodes": [
{
"id": "<string>",
"name": "<string>",
"type": "llm",
"occurrences": 123,
"parent_id": "<string>",
"has_children": true
}
],
"edges": [
{
"source": "<string>",
"target": "<string>",
"weight": 123
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.