12 lines
258 B
HTTP
12 lines
258 B
HTTP
### List all dinosaurs
|
|
GET http://localhost:3000/dinosaurs
|
|
|
|
### Get one dinosaur
|
|
GET http://localhost:3000/dinosaurs/1
|
|
|
|
### Invalid dinosaur ID
|
|
GET http://localhost:3000/dinosaurs/not-a-number
|
|
|
|
### Missing dinosaur
|
|
GET http://localhost:3000/dinosaurs/999999
|