Access cutting-edge research data and computational tools via our developer API
Token-based authentication system using OAuth 2.0 with 60-day token lifetimes.
RESTful endpoints for querying quantum simulations, material properties, and AI models.
200 requests/minute for unauthenticated users, 1000 requests/minute with API token.
Use OAuth 2.0 with client credentials grant type. All endpoints require Bearer token in Authorization header.
Unauthenticated requests have a limit of 200/minute. API keys increase limit to 1000/minute with burst capacity of 3000.
Access quantum computing capabilities through standardized REST endpoints compatible with NISQ and fault-tolerant architectures.
POST /v1/quantum/simulate
- Headers: Authorization: Bearer {{token}}
- Body: {
"circuit": "[QASM format]",
"shots": 1000
}
- Response: {
"counts": {"0": 623, "1": 377}
}
Query materials property data using chemical identifiers or structural descriptors in JSON-based API format.
GET /v1/materials?query=SiO2
- Headers: Authorization: Bearer {{token}}
- Response: {
"structure": "tetragonal",
"bandgap": 9.0eV,
"density": "2.65 g/cm³"
}