Get build logs
Builds
Get Build Logs
Retrieve the logs for a specific build
GET
Get build logs
Documentation Index
Fetch the complete documentation index at: https://docs.pipecat.ai/llms.txt
Use this file to discover all available pages before exploring further.
Streaming Logs During Build
You can poll this endpoint during a build to stream logs in real-time. The endpoint returns the latest logs each time you call it:Pagination
Use thelimit query parameter to control how many log lines are returned:
| Parameter | Default | Min | Max | Description |
|---|---|---|---|---|
limit | 500 | 1 | 10,000 | Number of log events to return |
Logs may be empty if the build was just created and hasn’t started executing yet. Continue polling until logs appear or the build completes.
Debugging Failed Builds
When a build fails, use this endpoint to diagnose the issue:- Missing dependencies in
requirements.txt - Dockerfile syntax errors
- Failed
pip installcommands - Missing files referenced in
COPYinstructions
Authorizations
Authentication using a Pipecat Cloud API token.
Path Parameters
Unique identifier of the build.
Query Parameters
Maximum number of log events to return.
Required range:
1 <= x <= 10000Response
Build logs retrieved successfully
Array of log lines from the build process. May be empty if the build hasn't started generating logs yet.
Example:
[
"[Container] 2026/03/04 10:00:00 Entering phase: INSTALL",
"[Container] 2026/03/04 10:00:01 Running command pip install -r requirements.txt",
"[Container] 2026/03/04 10:00:05 Successfully installed pipecat-ai-0.1.0"
]
Pagination token for retrieving additional logs. Present when more logs are available.
Example:
"eyJuZXh0VG9rZW4iOiAiYWJjMTIzIn0="