Backups
List restore jobs
Database
- Indexes
- Namespaces
- Vectors
- Search
- Imports
- Backups
- POSTCreate a backup of an index
- GETList backups for all indexes in a project
- GETList backups for an index
- GETDescribe a backup
- DELDelete a backup
- POSTCreate an index from a backup
- GETList restore jobs
- GETDescribe a restore job
- GETList collections
- POSTCreate a collection
- GETDescribe a collection
- DELDelete a collection
- POST
Inference
- Embed
- Rerank
Admin
- API keys
- Projects
- Service accounts
Architecture
Backups
List restore jobs
List all restore jobs for a project.
GET
/
restore-jobs
PINECONE_API_KEY="YOUR_API_KEY"
curl "https://api.pinecone.io/restore-jobs" \
-H "X-Pinecone-Api-Version: 2025-04" \
-H "Api-Key: $PINECONE_API_KEY"
{
"data":
[
{
"restore_job_id":"e9ba8ff8-7948-4cfa-ba43-34227f6d30d4",
"backup_id":"a65ff585-d987-4da5-a622-72e19a6ed5f4",
"target_index_name":"restored-index",
"target_index_id":"025117b3-e683-423c-b2d1-6d30fbe5027f",
"status":"Completed",
"created_at":"2025-03-11T18:50:19.770696Z",
"completed_at":"2025-03-11T18:51:37.872620Z",
"percent_complete":100
},
{
"restore_job_id":"f1ac7bb9-7948-4cfa-ba43-34227f6d30d4",
"backup_id":"e19a6ed-d987-4da5-a622-72e19a6ed5f4",
"target_index_name":"restored-index",
"target_index_id":"123487b3-e683-423c-b2d1-6d30fbe5027f",
"status":"Completed",
"created_at":"2025-03-11T18:50:19.770696Z",
"completed_at":"2025-03-11T18:51:37.872620Z",
"percent_complete":100
}
],
"pagination": null
}
PINECONE_API_KEY="YOUR_API_KEY"
curl "https://api.pinecone.io/restore-jobs" \
-H "X-Pinecone-Api-Version: 2025-04" \
-H "Api-Key: $PINECONE_API_KEY"
{
"data":
[
{
"restore_job_id":"e9ba8ff8-7948-4cfa-ba43-34227f6d30d4",
"backup_id":"a65ff585-d987-4da5-a622-72e19a6ed5f4",
"target_index_name":"restored-index",
"target_index_id":"025117b3-e683-423c-b2d1-6d30fbe5027f",
"status":"Completed",
"created_at":"2025-03-11T18:50:19.770696Z",
"completed_at":"2025-03-11T18:51:37.872620Z",
"percent_complete":100
},
{
"restore_job_id":"f1ac7bb9-7948-4cfa-ba43-34227f6d30d4",
"backup_id":"e19a6ed-d987-4da5-a622-72e19a6ed5f4",
"target_index_name":"restored-index",
"target_index_id":"123487b3-e683-423c-b2d1-6d30fbe5027f",
"status":"Completed",
"created_at":"2025-03-11T18:50:19.770696Z",
"completed_at":"2025-03-11T18:51:37.872620Z",
"percent_complete":100
}
],
"pagination": null
}
Authorizations
Query Parameters
The number of results to return per page.
Required range:
1 <= x <= 100
The token to use to retrieve the next page of results.
Response
200
application/json
This operation returns a list of all the restore jobs that you have previously created.
The list of restore jobs that exist in the project.
The RestoreJobModel describes the status of a restore job.
Unique identifier for the restore job
Example:
"670e8400-e29b-41d4-a716-446655440001"
Backup used for the restore
Example:
"670e8400-e29b-41d4-a716-446655440000"
Name of the index into which data is being restored
Example:
"sample-index"
ID of the index
Example:
"670e8400-e29b-41d4-a716-446655440002"
Status of the restore job
Example:
"Completed"
Timestamp when the restore job started
Example:
"2025-02-04T13:00:00.000Z"
Timestamp when the restore job finished
Example:
"2025-02-04T14:00:00.000Z"
The progress made by the restore job out of 100
Required range:
0 <= x <= 100
Example:
42.2
Was this page helpful?
PINECONE_API_KEY="YOUR_API_KEY"
curl "https://api.pinecone.io/restore-jobs" \
-H "X-Pinecone-Api-Version: 2025-04" \
-H "Api-Key: $PINECONE_API_KEY"
{
"data":
[
{
"restore_job_id":"e9ba8ff8-7948-4cfa-ba43-34227f6d30d4",
"backup_id":"a65ff585-d987-4da5-a622-72e19a6ed5f4",
"target_index_name":"restored-index",
"target_index_id":"025117b3-e683-423c-b2d1-6d30fbe5027f",
"status":"Completed",
"created_at":"2025-03-11T18:50:19.770696Z",
"completed_at":"2025-03-11T18:51:37.872620Z",
"percent_complete":100
},
{
"restore_job_id":"f1ac7bb9-7948-4cfa-ba43-34227f6d30d4",
"backup_id":"e19a6ed-d987-4da5-a622-72e19a6ed5f4",
"target_index_name":"restored-index",
"target_index_id":"123487b3-e683-423c-b2d1-6d30fbe5027f",
"status":"Completed",
"created_at":"2025-03-11T18:50:19.770696Z",
"completed_at":"2025-03-11T18:51:37.872620Z",
"percent_complete":100
}
],
"pagination": null
}