> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinecone.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Describe backup schedule

> Retrieve details for a Pinecone backup schedule by schedule ID, including frequency, retention days, next scheduled run, and enabled status.

<Note>
  This endpoint requires `X-Pinecone-Api-Version: 2026-07`.
</Note>

Get the details of a specific backup schedule by its ID.

### Path parameters

<ParamField path="schedule_id" type="string" required>
  The ID of the backup schedule.
</ParamField>

<RequestExample>
  ```bash curl theme={null}
  curl -sS "https://api.pinecone.io/backup-schedules/${SCHEDULE_ID}" \
    -H "api-key: ${PINECONE_API_KEY}" \
    -H "X-Pinecone-Api-Version: 2026-07"
  ```
</RequestExample>
