forked from cse-labs/kubernetes-in-codespaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
curl.http
83 lines (51 loc) · 1.55 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
80
81
82
83
# Swagger
GET http://localhost:30080 HTTP/1.1
###
# NGSA version
GET http://localhost:30080/version HTTP/1.1
###
# NGSA metrics
GET http://localhost:30080/metrics HTTP/1.1
###
# NGSA healthz
GET http://localhost:30080/healthz HTTP/1.1
###
# NGSA healthz ietf
GET http://localhost:30080/healthz/ietf 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
###
# WebValidate version
# note the / url will fail by design
GET http://localhost:30088/version HTTP/1.1
###
# WebValidate metrics
GET http://localhost:30088/metrics HTTP/1.1