Get OpenAPI Specification
const options = {method: 'GET'};
fetch('https://api.emitkit.com/api/openapi.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://api.emitkit.com/api/openapi.json{}Meta
Get OpenAPI Specification
Returns the OpenAPI 3.1 specification for this API in JSON format
GET
/
api
/
openapi.json
Get OpenAPI Specification
const options = {method: 'GET'};
fetch('https://api.emitkit.com/api/openapi.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://api.emitkit.com/api/openapi.json{}Response
200 - application/json
OpenAPI specification
The response is of type object.