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.
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/
https://api.impossiblemissionsforce.com/
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/quizzes
https://api.impossiblemissionsforce.com/quizzes
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"
}
]
}'
{ "id": "quiz_abc987def123", "name": "Who we are", "passingScore": 0.8, "questions": [ { … } ], "createdAt": "2023-02-19T10:13:21Z", "updatedAt": "2023-02-20T02:36:02Z" }
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/quizzes
https://api.impossiblemissionsforce.com/quizzes
curl -i -X GET \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/quizzes \
-H 'IMF-KEY: YOUR_API_KEY_HERE'
[ { "id": "quiz_abc987def123", "name": "Who we are", "passingScore": 0.8, "questions": [ … ], "createdAt": "2023-02-19T10:13:21Z", "updatedAt": "2023-02-20T02:36:02Z" } ]