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/badges
https://api.impossiblemissionsforce.com/badges
curl -i -X POST \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/badges \
-H 'Content-Type: application/json' \
-H 'IMF-KEY: YOUR_API_KEY_HERE' \
-d '{
"name": "Explorer",
"icon": "/images/explorer-icon.png",
"requirements": [
{
"type": "quiz",
"name": "Who we are",
"minScore": 0.85,
"maxAttempts": 1,
"status": "done"
}
],
"createdAt": "2023-02-19T11:21:36Z",
"updatedAt": "2023-02-19T11:21:36Z"
}'
{ "id": "badge_abc987def123", "name": "Explorer", "icon": "/images/explorer-icon.png", "requirements": [ { … } ], "createdAt": "2023-02-19T11:21:36Z", "updatedAt": "2023-02-19T11:21:36Z" }
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/badges
https://api.impossiblemissionsforce.com/badges
curl -i -X GET \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/badges \
-H 'IMF-KEY: YOUR_API_KEY_HERE'
[ { "id": "badge_abc987def123", "name": "Explorer", "icon": "/images/explorer-icon.png", "requirements": [ … ], "createdAt": "2023-02-19T11:21:36Z", "updatedAt": "2023-02-19T11:21:36Z" } ]