-
Notifications
You must be signed in to change notification settings - Fork 15
/
curl.http
79 lines (48 loc) · 1.45 KB
/
curl.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# IMDb readyz
GET http://localhost:30080/readyz HTTP/1.1
###
# IMDb healthz
GET http://localhost:30080/healthz HTTP/1.1
###
# IMDb healthz ietf
GET http://localhost:30080/healthz/ietf HTTP/1.1
###
# IMDb metrics
GET http://localhost:30080/metrics HTTP/1.1
###
# IMDb version
GET http://localhost:30080/version HTTP/1.1
###
# Swagger Home Page
GET http://localhost:30080 HTTP/1.1
###
# IMDb Movie API - retrieve list of actors and their profiles
GET http://localhost:30080/api/actors HTTP/1.1
###
# IMDb Movie API - retrieve profile of a specific actor by id
GET http://localhost:30080/api/actors/nm0000206 HTTP/1.1
###
# IMDb Movie API - retrieve profile of actors named Keanu
GET http://localhost:30080/api/actors?q=keanu HTTP/1.1
###
# IMDb Movie API - retrieve genres
GET http://localhost:30080/api/genres HTTP/1.1
###
# IMDb Movie API - retrieve movies
GET http://localhost:30080/api/movies HTTP/1.1
###
# IMDb Movie API - retrieve movie by id
GET http://localhost:30080/api/movies/tt0133093 HTTP/1.1
###
# IMDb Movie API - filter movies named Matrix
GET http://localhost:30080/api/movies?q=matrix HTTP/1.1
###
# IMDb Movie API - filter movies in the action genre
GET http://localhost:30080/api/movies?genre=action HTTP/1.1
###
# IMDb Movie API - filter movies released in 1999
GET http://localhost:30080/api/movies?year=1999 HTTP/1.1
###
# IMDb Movie API - filter movies with ration of 8.0
GET http://localhost:30080/api/movies?rating=8.0 HTTP/1.1
###