Skip to content

Results are limited to the current section : Cloud Services

Create Batch

POST
/api/v1/batches

Create a new batch to submit quantum computing jobs.

The authenticated user must be a member of the target project. The project will be billed for all jobs in the batch.

A batch groups one or more jobs sharing the same target device. The pulse sequence can be defined once at the batch level (sequence_builder) or individually per job (jobs[].sequence). The batch-level sequence can be parametrized: each job then provides its own variable bindings via variables instead of a full sequence.

Required fields:

  • project_id — the project that will be billed.
  • At least one job in jobs, unless the batch is left open (complete=false) for jobs to be added later.

Optional fields:

  • device_type — when omitted, inferred from the device embedded in the sequence. Use GET /api/v2/devices to discover available devices (includes private devices accessible to the authenticated user).

Returns: The created batch with its ID and initial status (PENDING).

CreateBatchSchema

Schema to parse request for the creation of a batch.

object
priority
Priority

Deprecated. No longer used.

number
sequence_builder
Sequence Builder

Serialized Pulser sequence shared by all jobs in the batch. Can be a parametrized sequence — each job then supplies its own variable assignments via variables. Optional if each job provides its own sequence via the sequence field.

string
emulator

Deprecated. Use device_type instead.

string
Allowed values: EMU_FREE EMU_SV EMU_TN EMU_C FRESNEL FRESNEL_CAN1 FRESNEL_SA1 FRESNEL8 EMU_FRESNEL FRESNEL_RD EMU_MPS
device_type

Device used to run the batch. If not provided, it will be extracted from the device inside the sequence.

string
Allowed values: EMU_FREE EMU_SV EMU_TN EMU_C FRESNEL FRESNEL_CAN1 FRESNEL_SA1 FRESNEL8 EMU_FRESNEL FRESNEL_RD EMU_MPS
configuration
Configuration

Deprecated. Use backend_configuration instead.

complete
Complete

Deprecated. Use open instead. When True, the batch is closed and will not accept new jobs.

boolean
open
Open

Whether the batch is open and accepting additional jobs. When True, new jobs can be added; when False, the batch is closed.

boolean
tags
Tags

Keywords used to refine the batch search.

Array<string>
unique items
project_id
required
Project Id

ID of the project to run the batch for.

string format: uuid
backend_configuration
Backend Configuration

Serialized emulator backend configuration.

string
jobs
Jobs

The list of jobs to execute in the batch. Required if the batch is not open.

Array<object>
CreateJobSchema

Schema to create a job within a batch.

object
runs
required
Runs

Number of times the pulse sequence is repeated.

integer
variables
Variables

Variable assignments for a parametrized sequence. Mutually exclusive with sequence.

object
sequence
Sequence

Serialized Pulser sequence for this specific job. Mutually exclusive with variables. Required if no batch-level sequence_builder is provided.

string

Successful Response

NonPaginatedResponse[ProducedBatchWithPartialJobsResponse]
object
data
ProducedBatchWithPartialJobsResponse

Response for a batch request which includes its jobs data but without the results.

This schema defines all the fields that can be publicly shared by the API.

object
id
required
Id

Unique identifier for the batch.

string format: uuid
parent_id
required
Parent Id

ID of the parent batch if created from a retry.

string format: uuid
status
required

Current batch status.

string
Allowed values: PENDING RUNNING DONE CANCELED CANCELING TIMED_OUT ERROR PAUSED
complete
required
Complete

Deprecated. Use open instead. Indicates whether the batch is still accepting additional jobs. False means the batch is open; True means it is closed.

boolean
open
required
Open

Whether the batch is open and accepting additional jobs.

boolean
priority
required
Priority

Deprecated. Priority of the batch.

integer
device_type
required
Device Type

Target device type for the batch.

string
user_id
required
User Id

ID of the user who created the batch.

string
project_id
required
Project Id

ID of the project this batch belongs to.

string format: uuid
created_at
required
Created At

Timestamp when the batch was created.

string format: date-time
updated_at
required
Updated At

Timestamp of the last batch update.

string format: date-time
sequence_builder
required
Sequence Builder

Serialized Pulser sequence shared by all jobs.

string
jobs_count
required
Jobs Count

Total number of jobs in the batch.

integer
jobs_count_per_status
required
Jobs Count Per Status

Number of jobs grouped by status.

object
tags
required
Tags

User-defined labels for organizing batches.

Array<string>
unique items
configuration
required
Configuration

Deprecated. Use backend_configuration. Extra configuration for job execution.

object
backend_configuration
required
Backend Configuration

Serialized emulator backend configuration.

string
webhook
required
Webhook

URL where job results are sent via webhook.

string
start_datetime
required
Start Datetime

Timestamp when processing started on hardware.

string format: date-time
end_datetime
required
End Datetime

Timestamp when processing finished, errored, or was canceled.

string format: date-time
jobs
required
Jobs

Jobs in the batch (without result payloads).

Array<object>
ProducedPartialJobResponse

Response to a request for a job.

This schema defines all the fields that can be publicly shared by the API and do not require significant computational resources. For example, ‘logs_links’ or ‘results link’.

object
id
required
Id

Unique identifier for the job.

string format: uuid
parent_id
required
Parent Id

ID of the original job if created from a retry (rebatch).

string format: uuid
status
required

Current job status.

string
Allowed values: PENDING RUNNING DONE ERROR CANCELED CANCELING
runs
required
Runs

Number of times the pulse sequence is repeated.

integer
batch_id
required
Batch Id

ID of the batch this job belongs to.

string format: uuid
project_id
required
Project Id

ID of the project this job belongs to.

string format: uuid
created_at
required
Created At

Timestamp when the job was created.

string format: date-time
updated_at
required
Updated At

Timestamp of the last job update.

string format: date-time
start_timestamp
required
Start Timestamp

Timestamp when the QPU or emulator started processing.

string format: date-time
end_timestamp
required
End Timestamp

Timestamp when the QPU or emulator finished, errored, or canceled the job.

string format: date-time
variables
required
Variables

Variable assignments used to build the pulse sequence.

object
errors
required
Errors

Errors returned during job execution.

Array<string>
progress
required
Progress

Job progress percentage (0-100).

integer
<= 100
sequence
required
Sequence

The built pulse sequence for the job.

string
creation_order
required
Creation Order

Position in the creation order within the batch.

integer
Example
{
"id": "00000000-0000-0000-0000-000000000003",
"status": "DONE",
"runs": 100,
"batch_id": "00000000-0000-0000-0000-000000000002",
"project_id": "00000000-0000-0000-0000-000000000001",
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T10:35:00Z",
"start_timestamp": "2025-01-15T10:31:00Z",
"end_timestamp": "2025-01-15T10:35:00Z",
"variables": {
"omega": 5
},
"progress": 100,
"creation_order": 1
}
queue_priority
required

Priority queue on which the batch is scheduled.

string
Allowed values: CRITICAL HIGH MEDIUM LOW FREE
Example
{
"id": "00000000-0000-0000-0000-000000000002",
"status": "PENDING",
"complete": false,
"open": true,
"priority": 0,
"device_type": "FRESNEL",
"user_id": "user-123",
"project_id": "00000000-0000-0000-0000-000000000001",
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T10:30:00Z",
"sequence_builder": "<serialized Pulser sequence>",
"jobs_count": 1,
"jobs_count_per_status": {
"PENDING": 1
},
"tags": [],
"jobs": [
{
"id": "00000000-0000-0000-0000-000000000003",
"status": "PENDING",
"runs": 100,
"batch_id": "00000000-0000-0000-0000-000000000002",
"project_id": "00000000-0000-0000-0000-000000000001",
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T10:30:00Z",
"variables": {
"omega": 5
},
"progress": 0,
"creation_order": 0
}
],
"queue_priority": "MEDIUM"
}

Validation Error

HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string