-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.json
More file actions
301 lines (301 loc) · 7.35 KB
/
Copy pathopenapi.json
File metadata and controls
301 lines (301 loc) · 7.35 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
{
"openapi": "3.1.0",
"info": {
"title": "QuiVad",
"version": "1.0.0",
"summary": "Net short positions disclosed to nineteen market regulators, since 2010.",
"description": "No key and no account. Every figure here was published by a regulator; whoever republishes it should say so, and every answer carries the sentence to do it with.",
"license": {
"name": "Public registers of the market authorities",
"url": "https://www.quivad.com/sources"
},
"contact": {
"name": "QuiVad",
"url": "https://www.quivad.com/api"
}
},
"servers": [
{
"url": "https://www.quivad.com"
}
],
"security": [],
"externalDocs": {
"description": "Human-readable documentation",
"url": "https://www.quivad.com/api"
},
"paths": {
"/api/moves": {
"get": {
"summary": "What moved over the last thirty days, qualified.",
"description": "Each row carries a kind: opening, increase, reduction, below_threshold. A market the drift rules flag is held back rather than served wrong, and named in held_back.",
"parameters": [
{
"name": "limit",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"minimum": 1,
"maximum": 12000,
"default": 1000
},
"description": "How many rows to return. Anything unreadable falls back to the default."
},
{
"name": "offset",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"minimum": 0,
"default": 0
},
"description": "Where to start. The page block of the answer carries total, more, next and previous; an offset past the end is an empty list, never an error."
}
],
"responses": {
"200": {
"description": "The moves of one page.",
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
},
"429": {
"description": "A refusal, in the shape of RFC 9457.",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
}
}
}
},
"/api/company/{slug}": {
"get": {
"summary": "One company: who is short of it now, and its whole archive.",
"parameters": [
{
"name": "slug",
"in": "path",
"required": true,
"schema": {
"type": "string"
},
"description": "The address of the company page, and the second field of /api/isins."
},
{
"name": "limit",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"minimum": 1,
"maximum": 12000,
"default": 1000
},
"description": "How many rows to return. Anything unreadable falls back to the default."
},
{
"name": "offset",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"minimum": 0,
"default": 0
},
"description": "Where to start. The page block of the answer carries total, more, next and previous; an offset past the end is an empty list, never an error."
}
],
"responses": {
"200": {
"description": "The company, with one page of its history.",
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
},
"404": {
"description": "A refusal, in the shape of RFC 9457.",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
},
"429": {
"description": "A refusal, in the shape of RFC 9457.",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
}
}
}
},
"/api/fund/{slug}": {
"get": {
"summary": "One fund: every company it is short of, across every register.",
"parameters": [
{
"name": "slug",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "The fund and its open positions.",
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
},
"404": {
"description": "A refusal, in the shape of RFC 9457.",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
},
"429": {
"description": "A refusal, in the shape of RFC 9457.",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
}
}
}
},
"/api/isins": {
"get": {
"summary": "One line per declared company: its ISIN and the address of its page.",
"responses": {
"200": {
"description": "A lookup table.",
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/api/positions.jsonl.gz": {
"get": {
"summary": "Every open position, one JSON object per line, gzipped.",
"description": "The whole base in one request. Rebuilt after each collection; x-quivad-lines and x-quivad-built-on say what the file holds without opening it.",
"responses": {
"200": {
"description": "The file.",
"content": {
"application/gzip": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"503": {
"description": "A refusal, in the shape of RFC 9457.",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"Problem": {
"type": "object",
"description": "Error format, following RFC 9457 (Problem Details for HTTP APIs).",
"required": [
"type",
"title",
"status",
"detail"
],
"properties": {
"type": {
"type": "string",
"format": "uri",
"description": "A documentation anchor that answers.",
"enum": [
"https://www.quivad.com/api#company-not-found",
"https://www.quivad.com/api#fund-not-found",
"https://www.quivad.com/api#no-such-endpoint",
"https://www.quivad.com/api#method-not-allowed",
"https://www.quivad.com/api#rate-limit-exceeded",
"https://www.quivad.com/api#not-ready"
]
},
"title": {
"type": "string"
},
"status": {
"type": "integer"
},
"detail": {
"type": "string"
},
"instance": {
"type": "string",
"description": "The path that was requested."
}
}
}
}
},
"x-rate-limit": {
"requests": 120,
"window": "1 minute",
"scope": "per calling address, on /api only",
"headers": [
"ratelimit-limit",
"ratelimit-remaining",
"ratelimit-reset",
"retry-after"
],
"note": "Behind the edge cache the headers travel on the 429 alone - stored ones would tell every caller the quota of the first - and a cached answer does not consume quota."
},
"x-stability": "No version in the address and none in the body, because nothing will break: fields are added, never removed or renamed under a caller, and addresses do not move."
}