OpenAPI spec (JSON)
System
OpenAPI spec (JSON)
Returns the OpenAPI specification in JSON format.
GET
OpenAPI spec (JSON)
Response
Successful response
OpenAPI specification
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.opper.ai/v3/openapi.jsonimport requests
url = "https://api.opper.ai/v3/openapi.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.opper.ai/v3/openapi.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}Returns the OpenAPI specification in JSON format.
curl --request GET \
--url https://api.opper.ai/v3/openapi.jsonimport requests
url = "https://api.opper.ai/v3/openapi.json"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.opper.ai/v3/openapi.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}Successful response
OpenAPI specification