Gateway REST API¶
The Qiskit Serverless Gateway REST API allows you to manage quantum programs and jobs programmatically.
Quick Start¶
Base URL¶
https://qiskit-serverless.quantum.ibm.com/api/v1/
Authentication¶
All requests require a Bearer token:
curl -H "Authorization: Bearer <your-token>" \
https://qiskit-serverless.quantum.ibm.com/api/v1/jobs/
Response Format¶
Responses are JSON with standard HTTP status codes:
200- Success400- Bad request401- Unauthorized404- Not found
Pagination¶
List endpoints support limit and offset parameters:
curl -H "Authorization: Bearer <token>" \
"https://qiskit-serverless.quantum.ibm.com/api/v1/jobs/?limit=10&offset=0"
OpenAPI Schema¶
The OpenAPI specification is available at: