Learning API Demo (v1)
This is a mock API. It is for demo and learning purposes. The server URL is powered by a Remockly mock server. You can send curl requests and use the try it console to interact with the mock API.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/
https://api.impossiblemissionsforce.com/
- Mock server
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/quizzes
https://api.impossiblemissionsforce.com/quizzes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/quizzes \
-H 'Content-Type: application/json' \
-H 'IMF-KEY: YOUR_API_KEY_HERE' \
-d '{
"name": "Who we are",
"passingScore": 0.8,
"questions": [
{
"type": "choice",
"question": "What is our mission?",
"choices": {
"a": "Multinational espionage agency",
"b": "Prevent manmade catastrophes",
"c": "Do amazing stunts",
"d": "2023"
},
"correctAnswer": "b"
}
]
}'
Response
application/json
{ "id": "quiz_abc987def123", "name": "Who we are", "passingScore": 0.8, "questions": [ { … } ], "createdAt": "2023-02-19T10:13:21Z", "updatedAt": "2023-02-20T02:36:02Z" }
- Mock server
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/quizzes
https://api.impossiblemissionsforce.com/quizzes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/quizzes \
-H 'IMF-KEY: YOUR_API_KEY_HERE'
Response
application/json
[ { "id": "quiz_abc987def123", "name": "Who we are", "passingScore": 0.8, "questions": [ … ], "createdAt": "2023-02-19T10:13:21Z", "updatedAt": "2023-02-20T02:36:02Z" } ]