-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnewspredict-openapi.yaml
More file actions
295 lines (282 loc) · 8.22 KB
/
Copy pathnewspredict-openapi.yaml
File metadata and controls
295 lines (282 loc) · 8.22 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
openapi: 3.1.0
info:
title: NewsPredict API
description: OSINT-powered prediction market — trade on real-time intelligence
version: 0.1.0
servers:
- url: http://localhost:3000
description: Local development
paths:
/api/markets:
get:
summary: List markets
tags: [Markets]
parameters:
- name: status
in: query
schema: { type: string, enum: [open, closed, resolved], default: open }
- name: category
in: query
schema: { type: string }
- name: q
in: query
description: Search query (server-side ILIKE)
schema: { type: string }
- name: id
in: query
description: Get single market by ID
schema: { type: string, format: uuid }
- name: limit
in: query
schema: { type: integer, default: 20, maximum: 50 }
responses:
'200':
description: Market list or single market
content:
application/json:
schema:
type: array
items: { $ref: '#/components/schemas/Market' }
post:
summary: Create market
tags: [Markets]
security: [{ SessionAuth: [] }]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [question, category, closeAt, resolutionCriteria]
properties:
question: { type: string }
description: { type: string }
category: { type: string }
closeAt: { type: string, format: date-time }
resolutionCriteria: { type: string }
resolutionSource: { type: string }
imageUrl: { type: string, format: uri }
responses:
'200':
description: Created market
content:
application/json:
schema: { $ref: '#/components/schemas/Market' }
/api/trades:
post:
summary: Execute trade
tags: [Trading]
security: [{ SessionAuth: [] }]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [marketId, side, amount]
properties:
marketId: { type: string, format: uuid }
side: { type: string, enum: [YES, NO] }
amount: { type: number, minimum: 1, maximum: 10000 }
responses:
'200':
description: Trade result
content:
application/json:
schema:
type: object
properties:
success: { type: boolean }
tradeId: { type: string, format: uuid }
shares: { type: number }
cost: { type: number }
patch:
summary: Update trade with txHash
tags: [Trading]
security: [{ SessionAuth: [] }]
requestBody:
content:
application/json:
schema:
type: object
properties:
tradeId: { type: string, format: uuid }
txHash: { type: string, pattern: '^0x[0-9a-f]{64}$' }
responses:
'200':
description: Success
/api/portfolio:
get:
summary: Get user portfolio
tags: [User]
security: [{ SessionAuth: [] }]
responses:
'200':
description: Portfolio with positions
content:
application/json:
schema:
type: object
properties:
userId: { type: string }
userName: { type: string }
createdAt: { type: string, format: date-time }
balance: { type: number }
totalPnl: { type: number }
activeCount: { type: integer }
winRate: { type: integer }
positions: { type: array, items: { $ref: '#/components/schemas/Position' } }
/api/comments:
get:
summary: Get market comments
tags: [Social]
parameters:
- name: marketId
in: query
required: true
schema: { type: string, format: uuid }
responses:
'200':
description: Comment list
post:
summary: Post comment
tags: [Social]
security: [{ SessionAuth: [] }]
requestBody:
content:
application/json:
schema:
type: object
required: [marketId, content]
properties:
marketId: { type: string, format: uuid }
content: { type: string, maxLength: 2000 }
responses:
'200':
description: Created comment
/api/follows:
post:
summary: Follow/unfollow user
tags: [Social]
security: [{ SessionAuth: [] }]
requestBody:
content:
application/json:
schema:
type: object
required: [targetUserId, action]
properties:
targetUserId: { type: string, format: uuid }
action: { type: string, enum: [follow, unfollow] }
responses:
'200':
description: Updated follow counts
/api/notifications:
get:
summary: Get notifications
tags: [User]
security: [{ SessionAuth: [] }]
responses:
'200':
description: Notification list with unread count
post:
summary: Mark notifications read
tags: [User]
security: [{ SessionAuth: [] }]
requestBody:
content:
application/json:
schema:
type: object
properties:
action: { type: string, enum: [mark-read, mark-all-read] }
notificationId: { type: string, format: uuid }
responses:
'200':
description: Success
/api/achievements:
get:
summary: Get user achievements
tags: [User]
parameters:
- name: userId
in: query
schema: { type: string, format: uuid }
responses:
'200':
description: Achievement list
/api/leaderboard:
get:
summary: Leaderboard rankings
tags: [User]
parameters:
- name: period
in: query
schema: { type: string, enum: [daily, weekly, alltime], default: weekly }
responses:
'200':
description: Ranked trader list
/api/sse/prices:
get:
summary: Real-time price SSE stream
tags: [Trading]
parameters:
- name: id
in: query
required: true
schema: { type: string, format: uuid }
responses:
'200':
description: SSE stream of price updates
content:
text/event-stream: {}
/api/market-seeds:
get:
summary: Sync markets from CHAOS Engine
tags: [System]
security: [{ CronAuth: [] }]
responses:
'200':
description: Created market count
/api/auto-resolve:
get:
summary: Auto-resolve expired markets
tags: [System]
security: [{ CronAuth: [] }]
responses:
'200':
description: Resolution results
components:
schemas:
Market:
type: object
properties:
id: { type: string, format: uuid }
question: { type: string }
category: { type: string }
status: { type: string, enum: [open, closed, resolved, cancelled] }
yesPrice: { type: number }
noPrice: { type: number }
volume: { type: number }
traderCount: { type: integer }
closeAt: { type: string, format: date-time }
createdAt: { type: string, format: date-time }
Position:
type: object
properties:
id: { type: string, format: uuid }
side: { type: string, enum: [YES, NO] }
shares: { type: number }
avgPrice: { type: number }
currentPrice: { type: number }
unrealizedPnl: { type: number }
securitySchemes:
SessionAuth:
type: http
scheme: bearer
description: NextAuth JWT session token (via cookie)
CronAuth:
type: apiKey
in: header
name: x-cron-secret
description: Cron secret for system endpoints