---
title: "Get Bulk Sync Execution Logs"
method: GET
path: "/api/bulk/syncs/{sync_id}/executions/{execution_id}/logs"
tags: ["Bulk Sync"]
---

# Get Bulk Sync Execution Logs

`GET /api/bulk/syncs/{sync_id}/executions/{execution_id}/logs`

Returns signed URLs for the log files produced by a single bulk sync execution.

Each URL in the response is pre-signed and grants temporary read access to the
corresponding log file. URLs expire after a short period; if you need to access
a file after the URL has expired, call this endpoint again to obtain a fresh set
of signed URLs.

> 📘 To export logs asynchronously to a destination of your choice, use
> [`POST /api/bulk/syncs/{sync_id}/executions/{execution_id}/logs/export`](../../../../../../../api-reference/bulk-sync/executions/export-logs)
> instead.

## Path parameters

- `sync_id` string, uuid, required — Unique identifier of the bulk sync.
- `execution_id` string, uuid, required — Unique identifier of the execution whose log files should be listed.

## Headers

- `X-Polytomic-Version` string

## Response `200`

OK

- BulkSyncExecutionLogsEnvelope
  - `data` BulkSyncExecutionLogs
    - `Expires` string, date-time — Timestamp at which the signed URLs in URLs stop working.
    - `URLs` string[], nullable — Signed URLs that download the execution's log files. These URLs expire at the Expires timestamp.

## Other responses

- `404` — Not Found

---

[API](https://skmtc.dev/polytomic/apis/polytomic-api.md) · [All operations](https://skmtc.dev/polytomic/apis/polytomic-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/polytomic/polytomic-api/revisions/6c3b7c51e463/schema)
