-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
434 lines (414 loc) · 12.7 KB
/
openapi.yaml
File metadata and controls
434 lines (414 loc) · 12.7 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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
openapi: 3.1.0
info:
title: Fairfetch — AI-Aware Content Layer
description: |
Serve machine-ready content to AI agents with x402 micro-payments,
MCP protocol support, and EU AI Act 2026 compliance.
## Payment Flow (x402)
Uses HTTP status 402 Payment Required per RFC 9110 (HTTP Semantics).
1. Request content without `X-PAYMENT` header → receive `402 Payment Required`
2. Response body contains `accepts` object with price, asset, network, and wallet (price may vary by content URL path when site owner uses route-based pricing). Responses include `Cache-Control: no-store` and must not be cached.
3. Obtain payment proof via the facilitator
4. Retry with `X-PAYMENT: <proof>` header → receive content
## Content Negotiation
Set the `Accept` header to control response format:
- `application/ai-context+json` — Full JSON-LD knowledge packet with lineage
- `application/ld+json` — JSON-LD article representation
- `text/markdown` — Clean markdown extraction
- `application/json` — Standard JSON response
version: 0.2.0
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
contact:
name: Fairfetch
url: https://github.com/Fairfetch-co/fairfetch
# When hosting your own instance, change the production server URL below to your deployed API base (e.g. https://your-domain.com).
servers:
- url: http://localhost:8402
description: Local development server
- url: https://api.fairfetch.co
description: Production API (replace with your API server URL when self-hosting)
paths:
/content/fetch:
get:
operationId: fetchContent
summary: Fetch, extract, and serve content in the negotiated format
description: |
Fetches the target URL, strips ads/navigation, extracts article content,
generates a summary, and returns a signed knowledge packet.
Requires x402 payment via `X-PAYMENT` header.
parameters:
- name: url
in: query
required: true
schema:
type: string
format: uri
description: URL of the page to fetch and convert
- $ref: '#/components/parameters/AcceptHeader'
- $ref: '#/components/parameters/PaymentHeader'
responses:
'200':
description: Content successfully retrieved and processed. Response varies by Accept (Vary: Accept).
headers:
Vary:
description: Indicates content negotiation by Accept header (RFC 9110)
schema:
type: string
example: Accept
X-Data-Origin-Verified:
$ref: '#/components/headers/X-Data-Origin-Verified'
X-AI-License-Type:
$ref: '#/components/headers/X-AI-License-Type'
X-Origin-Signature:
$ref: '#/components/headers/X-Origin-Signature'
X-Content-Hash:
$ref: '#/components/headers/X-Content-Hash'
X-PAYMENT-RECEIPT:
$ref: '#/components/headers/X-PAYMENT-RECEIPT'
content:
application/ai-context+json:
schema:
$ref: '#/components/schemas/KnowledgePacket'
application/ld+json:
schema:
$ref: '#/components/schemas/KnowledgePacket'
text/markdown:
schema:
type: string
application/json:
schema:
$ref: '#/components/schemas/KnowledgePacket'
'400':
description: URL not allowed (e.g. private IP, cloud metadata, non-HTTP scheme). SSRF protection.
content:
application/json:
schema:
$ref: '#/components/schemas/UrlBlocked'
'402':
description: Payment required (RFC 9110). Include X-PAYMENT or X-WALLET-TOKEN. Response includes Cache-Control no-store.
content:
application/json:
schema:
$ref: '#/components/schemas/PaymentRequired'
'502':
description: Upstream fetch failed (generic message; details logged server-side)
/content/summary:
get:
operationId: getSummary
summary: Get an AI-generated summary of a URL
parameters:
- name: url
in: query
required: true
schema:
type: string
format: uri
- $ref: '#/components/parameters/PaymentHeader'
responses:
'200':
description: Summary retrieved
content:
application/json:
schema:
$ref: '#/components/schemas/SummaryResponse'
'400':
description: URL not allowed (SSRF protection)
content:
application/json:
schema:
$ref: '#/components/schemas/UrlBlocked'
'402':
description: Payment required
content:
application/json:
schema:
$ref: '#/components/schemas/PaymentRequired'
'502':
description: Upstream fetch failed
'503':
description: Summarization service unavailable
/content/markdown:
get:
operationId: getMarkdown
summary: Get clean Markdown extraction of a URL
parameters:
- name: url
in: query
required: true
schema:
type: string
format: uri
- $ref: '#/components/parameters/PaymentHeader'
responses:
'200':
description: Markdown content
headers:
X-Data-Origin-Verified:
$ref: '#/components/headers/X-Data-Origin-Verified'
X-AI-License-Type:
$ref: '#/components/headers/X-AI-License-Type'
content:
text/markdown:
schema:
type: string
'400':
description: URL not allowed (SSRF protection)
content:
application/json:
schema:
$ref: '#/components/schemas/UrlBlocked'
'402':
description: Payment required
content:
application/json:
schema:
$ref: '#/components/schemas/PaymentRequired'
'502':
description: Upstream fetch failed
/health:
get:
operationId: healthCheck
summary: Service health check (no payment required)
responses:
'200':
description: Service is healthy
content:
application/json:
schema:
type: object
properties:
status:
type: string
example: ok
service:
type: string
example: fairfetch
version:
type: string
example: 0.2.0
/compliance/optout:
get:
operationId: getOptOutStatus
summary: Check if a domain has opted out of AI training
parameters:
- name: domain
in: query
required: true
schema:
type: string
description: Domain to check opt-out status
responses:
'200':
description: Opt-out status
content:
application/json:
schema:
$ref: '#/components/schemas/OptOutStatus'
components:
parameters:
AcceptHeader:
name: Accept
in: header
required: false
schema:
type: string
enum:
- application/ai-context+json
- application/ld+json
- text/markdown
- application/json
default: application/json
description: Desired response format
PaymentHeader:
name: X-PAYMENT
in: header
required: false
schema:
type: string
description: |
One-time payment proof from the facilitator. Alternatively, send
X-WALLET-TOKEN with a pre-funded wallet token for fast-path payment.
For testing, use any string starting with `test_` (e.g. `test_paid_fairfetch`).
headers:
X-Data-Origin-Verified:
description: |
EU AI Act compliance header. Attests that the content originates
from a verified content source with cryptographic proof.
schema:
type: string
enum: ['true', 'false']
X-AI-License-Type:
description: |
Declares the terms under which AI systems may use this content.
Values: publisher-terms, commercial, research-only, opt-out.
schema:
type: string
enum:
- publisher-terms
- commercial
- research-only
- opt-out
X-Origin-Signature:
description: Ed25519 signature of the content body (base64)
schema:
type: string
X-Content-Hash:
description: SHA-256 hash of the content body
schema:
type: string
pattern: '^sha256:[a-f0-9]{64}$'
X-PAYMENT-RECEIPT:
description: Transaction hash confirming payment settlement
schema:
type: string
schemas:
KnowledgePacket:
type: object
properties:
'@context':
type: string
example: https://schema.org
'@type':
type: string
example: Article
headline:
type: string
author:
type: object
properties:
'@type':
type: string
example: Person
name:
type: string
url:
type: string
format: uri
datePublished:
type: string
format: date-time
description:
type: string
description: AI-generated summary
articleBody:
type: string
description: Full markdown content
'fairfetch:originSignature':
type: object
properties:
algorithm:
type: string
example: Ed25519
signature:
type: string
publicKey:
type: string
'fairfetch:dataLineage':
type: object
properties:
source_url:
type: string
extraction_method:
type: string
extraction_timestamp:
type: string
content_hash:
type: string
license_type:
type: string
'fairfetch:lineage':
type: object
properties:
source_url:
type: string
pipeline:
type: array
items:
type: object
properties:
step:
type: string
timestamp:
type: string
tool:
type: string
record_count:
type: integer
UrlBlocked:
type: object
description: Returned when the requested URL is disallowed (private IP, cloud metadata, non-HTTP)
properties:
error:
type: string
example: url_blocked
detail:
type: string
example: The requested URL is not allowed.
PaymentRequired:
type: object
properties:
accepts:
type: object
properties:
price:
type: string
description: Base amount in smallest unit (e.g. USDC). May vary by content URL path when site owner configures route-based pricing.
example: '1000'
asset:
type: string
example: USDC
network:
type: string
example: base
payTo:
type: string
description: Content owner EVM wallet address
facilitator:
type: string
format: uri
description:
type: string
error:
type: string
example: Payment Required
message:
type: string
SummaryResponse:
type: object
properties:
url:
type: string
title:
type: string
author:
type: string
summary:
type: string
model:
type: string
OptOutStatus:
type: object
properties:
domain:
type: string
opted_out:
type: boolean
entries:
type: array
items:
type: object
properties:
domain:
type: string
url_pattern:
type: string
opt_out_scope:
type: string
declared_by:
type: string
timestamp:
type: string
reference:
type: string