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/assignments
https://api.impossiblemissionsforce.com/assignments
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/assignments \
-H 'Content-Type: application/json' \
-H 'IMF-KEY: YOUR_API_KEY_HERE' \
-d '{
"user": "abc123",
"type": "quiz",
"name": "Who we are",
"maxAttempts": 3,
"deadline": "2023-02-25T00:00:00Z"
}'
Response
application/json
{ "id": "asmt_atskthask23498uas2", "user": "abc123", "type": "quiz", "name": "Who we are", "maxAttempts": 3, "status": "done", "assignedAt": "2023-02-19T10:56:21Z", "deadline": "2023-02-25T00:00:00Z", "completedAt": "2023-02-19T14:52:21Z", "progress": 1, "data": {} }
- Mock server
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/assignments
https://api.impossiblemissionsforce.com/assignments
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://innovario.apishowdown.com/_mock/cicd-repo/openapi/assignments \
-H 'IMF-KEY: YOUR_API_KEY_HERE'
Response
application/json
[ { "id": "asmt_atskthask23498uas2", "user": "abc123", "type": "quiz", "name": "Who we are", "maxAttempts": 3, "status": "done", "assignedAt": "2023-02-19T10:56:21Z", "deadline": "2023-02-25T00:00:00Z", "completedAt": "2023-02-19T14:52:21Z", "progress": 1, "data": {} } ]