Imaginary, but delightful Museum API for interacting with museum services and information. Built with love by Redocly.
https://innovario.apishowdown.com/_mock/catalog/api-showdown/museum/v2/openapi/
https://api.fake-museum-example.com/v1.1/
Type of ticket being purchased. Use general
for regular museum entry and event
for tickets to special events.
Unique identifier for a special event. Required if purchasing tickets for the museum's special events.
https://innovario.apishowdown.com/_mock/catalog/api-showdown/museum/v2/openapi/tickets
https://api.fake-museum-example.com/v1.1/tickets
curl -i -X POST \
-u <username>:<password> \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/museum/v2/openapi/tickets \
-H 'Content-Type: application/json' \
-d '{
"ticketType": "general",
"ticketDate": "2023-09-07",
"email": "todd@example.com"
}'
{ "message": "Museum general entry ticket purchased", "ticketId": "382c0820-0530-4f4b-99af-13811ad0f17a", "ticketType": "general", "ticketDate": "2023-09-07", "confirmationCode": "ticket-general-e5e5c6-dce78" }
https://innovario.apishowdown.com/_mock/catalog/api-showdown/museum/v2/openapi/tickets/{ticketId}/pkpass
https://api.fake-museum-example.com/v1.1/tickets/{ticketId}/pkpass
curl -i -X GET \
-u <username>:<password> \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/museum/v2/openapi/tickets/a54a57ca-36f8-421b-a6b4-2e8f26858a4c/pkpass
{ "eventName": "Pirate Coding Workshop", "eventDate": "2023-10-29", "ticketId": "a54a57ca-36f8-421b-a6b4-2e8f26858a4c" }