-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathisro-api.yaml
86 lines (85 loc) · 2.3 KB
/
isro-api.yaml
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
84
85
86
openapi: 3.0.3
info:
title: ISRO Data - OpenAPI 3.0
description: |-
This API provides information about the spacecrafts, launchers, satellites, and centers of ISRO (Indian Space Research Organisation)
version: 1.0.11
servers:
- url: https://isro.vercel.app/api
paths:
/spacecrafts:
get:
summary: Spacecrafts
description: List all spacecrafts
operationId: listSpacecrafts
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
spacecrafts:
type: array
items:
type: object
/launchers:
get:
summary: Launchers
description: List all Launchers
operationId: listLaunchers
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
launchers:
type: array
items:
type: object
/customer_satellites:
get:
summary: Customer Satellites
description: List all customer satellites
operationId: listSatellites
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
customer_satellites:
type: array
items:
type: object
/centres:
get:
summary: Centers
description: List all centers
operationId: listCenters
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
centers:
type: array
items:
type: object