---
title: PulseQobjExperiment (v0.46)
description: API reference for qiskit.qobj.PulseQobjExperiment in qiskit v0.46
source: https://eu-de.quantum.cloud.ibm.com/docs/en/api/qiskit/0.46/qiskit.qobj.PulseQobjExperiment
---

# PulseQobjExperiment

*class* `qiskit.qobj.PulseQobjExperiment(instructions, config=None, header=None)`

[GitHub](https://github.com/qiskit/qiskit/tree/stable/0.46/qiskit/qobj/pulse_qobj.py)

Bases: [`object`](https://docs.python.org/3/library/functions.html#object)

A Pulse Qobj Experiment.

Each instance of this class is used to represent an individual Pulse experiment as part of a larger Pulse Qobj.

Instantiate a PulseQobjExperiment.

**Parameters**

- **config** ([*PulseQobjExperimentConfig*](/docs/api/qiskit/0.46/qiskit.qobj.PulseQobjExperimentConfig "qiskit.qobj.PulseQobjExperimentConfig")) – A config object for the experiment
- **header** (*PulseQobjExperimentHeader*) – A header object for the experiment
- **instructions** ([*list*](https://docs.python.org/3/library/stdtypes.html#list)) – A list of [`PulseQobjInstruction`](/docs/api/qiskit/0.46/qiskit.qobj.PulseQobjInstruction "qiskit.qobj.PulseQobjInstruction") objects

## Methods

### from\_dict

*classmethod* `from_dict(data)`

Create a new PulseQobjExperiment object from a dictionary.

**Parameters**

**data** ([*dict*](https://docs.python.org/3/library/stdtypes.html#dict)) – A dictionary for the experiment config

**Returns**

The object from the input dictionary.

**Return type**

[PulseQobjExperiment](#qiskit.qobj.PulseQobjExperiment "qiskit.qobj.PulseQobjExperiment")

### to\_dict

`to_dict()`

Return a dictionary format representation of the Experiment.

**Returns**

The dictionary form of the PulseQobjExperiment.

**Return type**

[dict](https://docs.python.org/3/library/stdtypes.html#dict)
