Created
April 5, 2020 10:25
-
-
Save kplaube/8cb39a98e0a2892412f060ad6c61704b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FORMAT: A1 | |
# Movies API | |
This is an API Blueprint example describing a movies API. | |
# Group Movies | |
Resources related to movies in the API. | |
## Movie collection [/movies] | |
### List all Movies [GET] | |
List movies in reverse order of publication. | |
+ Response 200 (application/json) | |
+ Attributes (array[Movie]) | |
## Data structures | |
### Movie | |
+ id: 810b43d0-fc0d-4199-8a79-25b471c880bf (string, required) | |
+ title: Avengers: Endgame (string, required) | |
+ description (string) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment