-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
1377 lines (1300 loc) · 36.5 KB
/
openapi.yaml
File metadata and controls
1377 lines (1300 loc) · 36.5 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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: ReliAPI
description: 'Reliability layer for API calls: retries, caching, dedup, circuit
breakers, LLM proxy with cost control.'
version: 1.1.0
contact:
name: KikuAI-Lab
url: https://github.com/kiku-jw/reliapi
email: dev@kikuai.dev
license:
name: AGPL-3.0-only
url: https://www.gnu.org/licenses/agpl-3.0.html
paths:
/health:
get:
tags:
- Health
summary: Health Check
description: Basic health check endpoint for load balancers and monitoring.
operationId: health_check_health_get
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/HealthResponse'
/healthz:
get:
tags:
- Health
summary: Healthz
description: Kubernetes-style health check endpoint with optional rate limiting.
operationId: healthz_healthz_get
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/StatusResponse'
/readyz:
get:
tags:
- Health
summary: Readyz
description: Readiness check endpoint with optional rate limiting.
operationId: readyz_readyz_get
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/StatusResponse'
/livez:
get:
tags:
- Health
summary: Livez
description: Liveness check endpoint with optional rate limiting.
operationId: livez_livez_get
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/StatusResponse'
/metrics:
get:
tags:
- Health
summary: Metrics
description: Prometheus metrics endpoint with rate limiting.
operationId: metrics_metrics_get
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
/v1/proxy/http:
post:
tags:
- Proxy
summary: Proxy HTTP request
description: Universal HTTP proxy endpoint for any HTTP API. Supports retries,
circuit breaker, cache, and idempotency. Use this endpoint to add reliability
layers to any HTTP API call.
operationId: proxy_http_v1_proxy_http_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPProxyRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v1/proxy/llm:
post:
tags:
- Proxy
summary: Proxy LLM request
description: LLM proxy endpoint with idempotency, budget caps, and caching.
Make idempotent LLM API calls with predictable costs. Supports OpenAI, Anthropic,
and Mistral providers. Set stream=true for Server-Sent Events (SSE) streaming.
operationId: proxy_llm_v1_proxy_llm_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/LLMProxyRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v1/rapidapi/status:
get:
tags:
- RapidAPI
summary: RapidAPI Integration Status
description: Check the status of RapidAPI integration.
operationId: rapidapi_status_v1_rapidapi_status_get
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
/proxy/http:
post:
tags:
- Legacy
- Proxy
summary: Proxy HTTP request
description: Universal HTTP proxy endpoint for any HTTP API. Supports retries,
circuit breaker, cache, and idempotency. Use this endpoint to add reliability
layers to any HTTP API call.
operationId: proxy_http_proxy_http_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPProxyRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
deprecated: true
/proxy/llm:
post:
tags:
- Legacy
- Proxy
summary: Proxy LLM request
description: LLM proxy endpoint with idempotency, budget caps, and caching.
Make idempotent LLM API calls with predictable costs. Supports OpenAI, Anthropic,
and Mistral providers. Set stream=true for Server-Sent Events (SSE) streaming.
operationId: proxy_llm_proxy_llm_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/LLMProxyRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
deprecated: true
/rapidapi/status:
get:
tags:
- Legacy
- RapidAPI
summary: RapidAPI Integration Status
description: Check the status of RapidAPI integration.
operationId: rapidapi_status_rapidapi_status_get
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
deprecated: true
/paddle/checkout:
post:
tags:
- paddle
summary: Create Checkout
description: 'Create a Paddle checkout session for subscription.
This endpoint creates a checkout session through Paddle API.
Returns checkout URL that user can redirect to.'
operationId: create_checkout_paddle_checkout_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateCheckoutRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
additionalProperties: true
type: object
title: Response Create Checkout Paddle Checkout Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/paddle/subscription/{subscription_id}:
get:
tags:
- paddle
summary: Get Subscription
description: 'Get subscription status from Paddle.
Fetches subscription details from Paddle API.'
operationId: get_subscription_paddle_subscription__subscription_id__get
parameters:
- name: subscription_id
in: path
required: true
schema:
type: string
title: Subscription Id
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/SubscriptionStatus'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/paddle/webhook:
post:
tags:
- paddle
summary: Paddle Webhook
description: 'Handle Paddle webhook events.
Processes webhook events from Paddle:
- subscription.created
- subscription.updated
- subscription.cancelled
- transaction.completed
- transaction.payment_failed
All events are processed automatically without manual intervention.'
operationId: paddle_webhook_paddle_webhook_post
parameters:
- name: Paddle-Signature
in: header
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Paddle-Signature
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: object
additionalProperties:
type: string
title: Response Paddle Webhook Paddle Webhook Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/paddle/plans:
get:
tags:
- paddle
summary: List Plans
description: 'List available subscription plans.
Returns list of subscription plans configured in Paddle.'
operationId: list_plans_paddle_plans_get
responses:
'200':
description: Successful Response
content:
application/json:
schema:
items:
$ref: '#/components/schemas/SubscriptionPlan'
type: array
title: Response List Plans Paddle Plans Get
/onboarding/start:
post:
tags:
- onboarding
summary: Start Onboarding
description: 'Start self-service onboarding for a new user.
This endpoint:
1. Generates API key automatically
2. Creates user account
3. Returns quick start guide and examples
4. Provides integration verification endpoint
All steps are automated - no manual intervention required.'
operationId: start_onboarding_onboarding_start_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/OnboardingRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/OnboardingResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/onboarding/quick-start:
get:
tags:
- onboarding
summary: Get Quick Start Guide
description: 'Get quick start guide for onboarding.
Returns step-by-step guide with code examples.'
operationId: get_quick_start_guide_onboarding_quick_start_get
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/QuickStartGuide'
/onboarding/verify:
post:
tags:
- onboarding
summary: Verify Integration
description: 'Verify user integration.
Checks if user has made successful API calls and provides feedback.'
operationId: verify_integration_onboarding_verify_post
parameters:
- name: X-API-Key
in: header
required: true
schema:
type: string
title: X-Api-Key
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: object
additionalProperties: true
title: Response Verify Integration Onboarding Verify Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/analytics/track:
post:
tags:
- analytics
summary: Track Event
description: 'Track analytics event.
Automatically sends event to configured analytics providers:
- Google Analytics (if configured)
- Mixpanel (if configured)
- PostHog (if configured)
All tracking is automated - no manual intervention required.'
operationId: track_event_analytics_track_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Event'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
additionalProperties:
type: string
type: object
title: Response Track Event Analytics Track Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/analytics/conversion:
post:
tags:
- analytics
summary: Track Conversion
description: 'Track conversion event.
Tracks conversion events in the funnel:
- Visitor → Trial → Paid
All tracking is automated.'
operationId: track_conversion_analytics_conversion_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ConversionEvent'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
additionalProperties:
type: string
type: object
title: Response Track Conversion Analytics Conversion Post
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/analytics/funnel:
get:
tags:
- analytics
summary: Get Conversion Funnel
description: 'Get conversion funnel metrics.
Returns conversion funnel data:
- Visitors
- Trial signups
- Paid conversions
- Conversion rates
All metrics are calculated automatically.'
operationId: get_conversion_funnel_analytics_funnel_get
parameters:
- name: start_date
in: query
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Start Date
- name: end_date
in: query
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: End Date
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: object
additionalProperties: true
title: Response Get Conversion Funnel Analytics Funnel Get
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/calculators/pricing:
post:
tags:
- calculators
summary: Calculate Pricing
description: 'Calculate pricing and savings with ReliAPI.
Automatically calculates:
- Cost without ReliAPI
- Cost with ReliAPI (considering cache hits)
- Monthly savings
- Recommended plan'
operationId: calculate_pricing_calculators_pricing_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PricingCalculatorRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/PricingCalculatorResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/calculators/roi:
post:
tags:
- calculators
summary: Calculate Roi
description: 'Calculate ROI for ReliAPI implementation.
Automatically calculates:
- Cost savings from caching
- Development time savings
- Total ROI
- Payback period'
operationId: calculate_roi_calculators_roi_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ROICalculatorRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ROICalculatorResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/calculators/cost-savings:
get:
tags:
- calculators
summary: Calculate Cost Savings
description: 'Calculate cost savings from caching.
Simplified endpoint for quick calculations.'
operationId: calculate_cost_savings_calculators_cost_savings_get
parameters:
- name: monthly_requests
in: query
required: true
schema:
type: integer
title: Monthly Requests
- name: cost_per_request
in: query
required: false
schema:
type: number
default: 0.001
title: Cost Per Request
- name: cache_hit_rate
in: query
required: false
schema:
type: number
default: 60
title: Cache Hit Rate
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: object
additionalProperties: true
title: Response Calculate Cost Savings Calculators Cost Savings Get
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/dashboard/:
get:
tags:
- dashboard
summary: Dashboard Html
description: Возвращает HTML дашборд.
operationId: dashboard_html_dashboard__get
responses:
'200':
description: Successful Response
content:
text/html:
schema:
type: string
/dashboard/api/items:
get:
tags:
- dashboard
summary: Get Items
description: Получает отфильтрованные items для дашборда.
operationId: get_items_dashboard_api_items_get
parameters:
- name: platform
in: query
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Platform
- name: type
in: query
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Type
- name: search
in: query
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Search
- name: date_from
in: query
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Date From
- name: date_to
in: query
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Date To
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: array
items:
type: object
additionalProperties: true
title: Response Get Items Dashboard Api Items Get
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/dashboard/api/export:
get:
tags:
- dashboard
summary: Export Items
description: Экспортирует items в CSV или JSON.
operationId: export_items_dashboard_api_export_get
parameters:
- name: format
in: query
required: false
schema:
type: string
pattern: ^(json|csv)$
default: json
title: Format
- name: platform
in: query
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Platform
- name: type
in: query
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Type
responses:
'200':
description: Successful Response
content:
application/json:
schema: {}
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
schemas:
ConversionEvent:
properties:
event_type:
type: string
title: Event Type
user_id:
type: string
title: User Id
properties:
additionalProperties: true
type: object
title: Properties
type: object
required:
- event_type
- user_id
title: ConversionEvent
description: Conversion event model.
CreateCheckoutRequest:
properties:
plan_id:
type: string
title: Plan Id
customer_email:
type: string
title: Customer Email
success_url:
type: string
title: Success Url
cancel_url:
anyOf:
- type: string
- type: 'null'
title: Cancel Url
type: object
required:
- plan_id
- customer_email
- success_url
title: CreateCheckoutRequest
description: Request to create a Paddle checkout.
Event:
properties:
event_name:
type: string
title: Event Name
user_id:
anyOf:
- type: string
- type: 'null'
title: User Id
properties:
additionalProperties: true
type: object
title: Properties
timestamp:
anyOf:
- type: string
format: date-time
- type: 'null'
title: Timestamp
type: object
required:
- event_name
title: Event
description: Analytics event model.
HTTPProxyRequest:
properties:
target:
type: string
title: Target
description: Target name from config.yaml (e.g., 'my_api')
method:
type: string
title: Method
description: 'HTTP method: GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS'
path:
type: string
title: Path
description: API path (e.g., '/users/123' or '/api/v1/data')
headers:
anyOf:
- additionalProperties:
type: string
type: object
- type: 'null'
title: Headers
description: HTTP headers to include in request
query:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
title: Query
description: 'Query parameters (e.g., {''page'': 1, ''limit'': 10})'
body:
anyOf:
- type: string
- type: 'null'
title: Body
description: Request body as JSON string (for POST/PUT/PATCH)
idempotency_key:
anyOf:
- type: string
- type: 'null'
title: Idempotency Key
description: Idempotency key for request coalescing. Concurrent requests
with same key execute once.
cache:
anyOf:
- type: integer
minimum: 0.0
- type: 'null'
title: Cache
description: Cache TTL in seconds (overrides config default). Only applies
to GET/HEAD requests.
type: object
required:
- target
- method
- path
title: HTTPProxyRequest
description: 'Request schema for POST /proxy/http.
Use this endpoint to proxy any HTTP API request with reliability layers:
- Retries with exponential backoff
- Circuit breaker per target
- TTL cache for GET/HEAD requests
- Idempotency with request coalescing'
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
HealthResponse:
properties:
status:
type: string
title: Status
version:
type: string
title: Version
default: 1.1.0
type: object
required:
- status
title: HealthResponse
description: Health check response model.
LLMProxyRequest:
properties:
target:
type: string
title: Target
description: LLM target name from config.yaml (e.g., 'openai', 'anthropic')
messages:
items:
additionalProperties:
type: string
type: object
type: array
minItems: 1
title: Messages
description: 'Messages list with ''role'' and ''content'' (e.g., [{''role'':
''user'', ''content'': ''Hello''}])'
model:
anyOf:
- type: string
- type: 'null'
title: Model
description: Model name (e.g., 'gpt-4o-mini', 'claude-3-haiku'). Uses default
from config if not specified.
max_tokens: