• Overview
    • Welcome
    • Getting Your API Keys
    • Quickstart
    • Getting Support
  • Models
    • Overview
    • Coulomb Blockade
    • Coulomb Diamond
    • Charge Stability Diagram
    • Turn-on
    • Pinch-off
  • API Reference
LogoLogo
API ReferenceModels

List Models

GET
https://api.conductorquantum.com/v0/models
GET
/v0/models
1from conductorquantum import ConductorQuantum
2client = ConductorQuantum(token="YOUR_TOKEN", )
3client.models.list()
Try it
1[
2 {
3 "id": "coulomb-blockade-peak-detector-v1",
4 "name": "Coulomb Blockade Peak Detector",
5 "description": "Detects Coulomb blockade peaks in 1D Coulomb blockade data.",
6 "released": "2024-01-01T00:00:00",
7 "number_of_runs": 2323,
8 "input_shape_requirements": "string"
9 }
10]
Retrieves a list of available models.
Was this page helpful?
Previous

Execute Model

Next
Built with
Execute Model
Retrieves a list of available models.

Headers

AuthorizationstringRequired
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Query parameters

skipintegerOptionalDefaults to 0
The number of models to skip.
limitintegerOptionalDefaults to 100
The number of models to include.

Response

Successful Response
idstring
The string ID of the model
namestring
The name of the model
descriptionstring
The description of the model
releasedstringformat: "date-time"
The UTC time the model was released
number_of_runsinteger
The number of times the model has been run
input_shape_requirementsstring
The input shape requirements for the model

Errors

The number of models to skip.
The number of models to include.
Successful Response

Bearer authentication of the form Bearer <token>, where token is your auth token.