---
title: "Find Deployment Logs"
method: GET
path: "/deployments/{deploymentId}/logs"
tags: ["deployments"]
---

# Find Deployment Logs

`GET /deployments/{deploymentId}/logs`

Retrieves logs for a specific deployment. Supports filtering by timestamp to fetch only recent logs.

## Path parameters

- `deploymentId` string, required

## Query parameters

- `since` number — A UNIX timestamp (in seconds) used to filter logs. Returns only log entries generated after the specified time.

## Response `200`

Success

- object
  - `logs` object[], required — Array of log entries.
    - `createdAt` string, required — Log creation timestamp.
    - `deploymentId` string, required — Deployment ID.
    - `id` string, required — Log entry ID.
    - `text` string, required — Log message content.
    - `type` 'stdout' | 'stderr', required — Output stream type.
    - `level` 'error' | 'warning' | 'info' — Log severity level.
    - `object` 'deployment_log', required — Object type identifier.
  - `nextSince` number — Timestamp for pagination.
  - `object` 'list', required — Object type identifier.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict
- `413` — Payload Too Large
- `422` — Unprocessable Entity
- `429` — Too Many Requests
- `500` — Internal Server Error

## Changes

- **2025-10-23** `bcf554284606` — 1 breaking, 1 warning, 8 info
  - the `logs/items/` response's property type/format changed from `string`/`` to `object`/`` for status `200`
  - removed the optional property `error` from the response with the `200` status
  - added the optional property `logs/items/level` to the response with the `200` status
  - added the required property `logs/items/createdAt` to the response with the `200` status
  - …6 more
- **2025-08-24** `3521652a43a7` — 8 breaking, 1 warning, 1 info
  - the `logs/items/` response's property type/format changed from `object`/`` to `string`/`` for status `200`
  - removed the required property `logs/items/createdAt` from the response with the `200` status
  - removed the required property `logs/items/deploymentId` from the response with the `200` status
  - removed the required property `logs/items/id` from the response with the `200` status
  - …6 more

[Change history](https://skmtc.dev/vercel/apis/v0-platform-api-beta/changes/deployments/:deploymentId/logs/get.md)

---

[API](https://skmtc.dev/vercel/apis/v0-platform-api-beta.md) · [All operations](https://skmtc.dev/vercel/apis/v0-platform-api-beta/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/vercel/v0-platform-api-beta/revisions/79811cd54faa/schema)
