-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
987 lines (957 loc) · 32.5 KB
/
Copy pathopenapi.yaml
File metadata and controls
987 lines (957 loc) · 32.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
openapi: 3.1.0
info:
title: RequestBite Slingshot Proxy API
version: 1.0.0
description: |
RequestBite Slingshot is a HTTP proxy service that forwards requests to external APIs and services.
It supports various request types including JSON, form data, and multipart form data, with features like
streaming responses, custom headers, and loop prevention.
contact:
name: RequestBite
url: https://requestbite.com/slingshot
license:
name: AGPL 3.0
url: https://github.com/requestbite/proxy/blob/main/LICENSE
servers:
- url: http://localhost:9999
description: Local development server
- url: http://localhost:7331
description: Locally built proxy server
- url: https://p.requestbite.com
description: Production proxy server
tags:
- name: Proxy
description: HTTP proxy operations for forwarding requests
- name: Files
description: Local file system operations (requires --enable-local-files flag)
- name: Execute
description: Process execution operations (requires --enable-exec flag, localhost only)
- name: Health
description: Service health and status checks
paths:
/:
get:
summary: API root
description: |
Returns a welcome message with logo and information about the Slingshot Proxy.
operationId: root
responses:
'200':
description: Welcome message with service information
content:
text/plain:
schema:
type: string
example: |
Welcome to version 1.0.0 of:
RequestBite Slingshot Proxy API
The RequestBite Slingshot Proxy is an HTTP proxy server...
/proxy/request:
post:
tags:
- Proxy
summary: Execute a JSON-based HTTP request
description: |
Forwards an HTTP request to a specified URL with full control over method, headers, body, and query parameters.
Supports both standard and streaming responses, as well as pass-through mode for raw response bodies.
**Loop Prevention**: Requests are blocked if they would create an infinite loop back to the proxy.
operationId: proxyRequest
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyRequest'
examples:
simpleGet:
summary: Simple GET request
value:
method: GET
url: https://api.example.com/users
timeout: 30
postWithBody:
summary: POST request with JSON body
value:
method: POST
url: https://api.example.com/users
headers:
Content-Type: application/json
Authorization: Bearer token123
body:
name: John Doe
email: john@example.com
timeout: 60
getWithQueryParams:
summary: GET with query parameters
value:
method: GET
url: https://api.example.com/search
queryParams:
q: search term
limit: "10"
offset: "0"
timeout: 30
pathParameters:
summary: Request with path parameters
value:
method: GET
url: https://api.example.com/users/{userId}/posts/{postId}
pathParams:
userId: "123"
postId: "456"
timeout: 30
streamingRequest:
summary: Streaming response (e.g., SSE, chunked)
value:
method: GET
url: https://api.example.com/stream
streaming: true
timeout: 300
passThroughMode:
summary: Pass-through mode (returns raw response)
value:
method: GET
url: https://api.example.com/image.png
passThrough: true
timeout: 60
responses:
'200':
description: Request executed successfully (check success field for actual result)
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
examples:
successResponse:
summary: Successful proxied request
value:
success: true
statusCode: 200
headers:
content-type: application/json
cache-control: no-cache
body:
id: 123
name: John Doe
contentType: application/json
cancelled: false
errorResponse:
summary: Failed proxied request
value:
success: false
errorType: connection_error
errorTitle: Connection Failed
errorMessage: "dial tcp: lookup api.example.com: no such host"
cancelled: false
timeoutResponse:
summary: Request timeout
value:
success: false
errorType: timeout_error
errorTitle: Request Timeout
errorMessage: "context deadline exceeded"
cancelled: false
text/event-stream:
schema:
type: string
description: Server-Sent Events stream (when streaming=true)
example: |
data: {"message": "chunk 1"}
data: {"message": "chunk 2"}
'508':
description: Loop detected - request would create an infinite loop
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
example:
success: false
errorType: loop_detected
errorTitle: Loop Detected
errorMessage: Request could create an infinite loop to this proxy server
cancelled: false
/proxy/form:
post:
tags:
- Proxy
summary: Execute a form-based HTTP request
description: |
Forwards a form-based HTTP request (application/x-www-form-urlencoded or multipart/form-data).
Configuration is passed via query parameters, while form data is in the request body.
**Multipart Support**: For multipart/form-data, the raw body is preserved including boundaries and files.
operationId: proxyFormRequest
parameters:
- name: url
in: query
required: true
schema:
type: string
format: uri
description: Target URL to forward the request to
example: https://api.example.com/upload
- name: method
in: query
required: false
schema:
type: string
default: POST
enum: [GET, POST, PUT, PATCH, DELETE]
description: HTTP method (defaults to POST)
- name: contentType
in: query
required: false
schema:
type: string
description: Content-Type header override
example: application/x-www-form-urlencoded
- name: headers
in: query
required: false
schema:
type: string
description: JSON-encoded headers object
example: '{"Authorization":"Bearer token123"}'
- name: path_params
in: query
required: false
schema:
type: string
description: JSON-encoded path parameters object
example: '{"userId":"123"}'
- name: timeout
in: query
required: false
schema:
type: integer
default: 60
minimum: 1
maximum: 600
description: Request timeout in seconds
- name: followRedirects
in: query
required: false
schema:
type: boolean
default: true
description: Whether to follow HTTP redirects
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
type: object
additionalProperties:
type: string
example:
username: john_doe
password: secret123
remember_me: "true"
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
name:
type: string
description:
type: string
example:
file: (binary)
name: document.pdf
description: Important document
responses:
'200':
description: Form request executed successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
examples:
successfulUpload:
summary: Successful file upload
value:
success: true
statusCode: 201
headers:
content-type: application/json
body:
id: abc123
filename: document.pdf
size: 1048576
contentType: application/json
cancelled: false
'508':
description: Loop detected
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
/file:
post:
tags:
- Files
summary: Serve a local file
description: |
Retrieves and serves a file from the local filesystem. Returns the raw file content with appropriate MIME type.
**Security**:
- Requires `--enable-local-files` flag to be enabled
- **Localhost only**: Only accessible from 127.0.0.1
- Only absolute paths are accepted
- Path traversal attempts are prevented via filepath.Clean()
**MIME Detection**: Content-Type is detected based on file extension and content analysis.
operationId: serveFile
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FileRequest'
examples:
textFile:
summary: Serve a text file
value:
path: /home/user/documents/readme.txt
imageFile:
summary: Serve an image
value:
path: /home/user/images/photo.jpg
jsonFile:
summary: Serve a JSON file
value:
path: /var/data/config.json
responses:
'200':
description: File served successfully
content:
text/plain:
schema:
type: string
format: binary
image/jpeg:
schema:
type: string
format: binary
image/png:
schema:
type: string
format: binary
application/json:
schema:
type: object
application/pdf:
schema:
type: string
format: binary
application/octet-stream:
schema:
type: string
format: binary
'404':
description: File not found
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
example:
success: false
errorType: file_not_found
errorTitle: File Not Found
errorMessage: "File not found: /home/user/missing.txt"
cancelled: false
'400':
description: Invalid request (e.g., relative path, directory instead of file)
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
examples:
relativePath:
summary: Relative path rejected
value:
success: false
errorType: file_access_error
errorTitle: File Access Error
errorMessage: Path must be absolute
cancelled: false
isDirectory:
summary: Path is a directory
value:
success: false
errorType: file_access_error
errorTitle: File Access Error
errorMessage: Path is a directory, not a file
cancelled: false
'403':
description: Feature disabled or not from localhost
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
examples:
notLocalhost:
summary: Request not from localhost
value:
success: false
errorType: localhost_only
errorTitle: Localhost Only
errorMessage: "This endpoint is only accessible from localhost (127.0.0.1)"
cancelled: false
/dir:
post:
tags:
- Files
summary: List directory contents
description: |
Lists files and subdirectories in a specified directory. Returns an object with the parent
directory path and a sorted array of entries (directories first, then alphabetically).
**Security**:
- Requires `--enable-local-files` flag to be enabled
- **Localhost only**: Only accessible from 127.0.0.1
- Only absolute paths are accepted
- Defaults to user's home directory if no path provided (falls back to / on Unix, C:\ on Windows)
operationId: listDirectory
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DirectoryRequest'
examples:
specificDirectory:
summary: List specific directory
value:
path: /home/user/documents
homeDirectory:
summary: List home directory (default when path is null)
value:
path: null
windowsDirectory:
summary: List Windows directory
value:
path: "C:\\Users\\John\\Documents"
responses:
'200':
description: Directory contents retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/DirectoryResponse'
example:
parentDir: /home/user
currentDir: /home/user/documents
dir:
- name: projects
type: directory
- name: documents
type: directory
- name: readme.txt
type: file
sizeBytes: 2048
sizeHuman: "2 kb"
- name: config.json
type: file
sizeBytes: 1536000
sizeHuman: "1 MB"
'404':
description: Directory not found
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
example:
success: false
errorType: file_not_found
errorTitle: File Not Found
errorMessage: "Directory not found: /home/user/missing"
cancelled: false
'400':
description: Invalid request (e.g., path is a file, not a directory)
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
example:
success: false
errorType: file_access_error
errorTitle: File Access Error
errorMessage: Path is a file, not a directory
cancelled: false
'403':
description: Feature disabled or not from localhost
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyResponse'
examples:
notLocalhost:
summary: Request not from localhost
value:
success: false
errorType: localhost_only
errorTitle: Localhost Only
errorMessage: "This endpoint is only accessible from localhost (127.0.0.1)"
cancelled: false
/exec:
post:
tags:
- Execute
summary: Execute a process
description: |
Executes a command with optional arguments, environment variables, and working directory.
Returns the exit code, stdout, stderr, and execution time.
**Security**:
- Requires `--enable-exec` flag to be enabled
- **Localhost only**: Only accessible from 127.0.0.1
- No command restrictions - user's responsibility to ensure safety
- Maximum timeout: 20 seconds, default: 10 seconds
**Note**: This is a synchronous operation. The request waits for the command to complete.
operationId: executeProcess
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ExecRequest'
examples:
simpleCommand:
summary: Simple command without arguments
value:
command: "ls"
timeout: 10
commandWithArgs:
summary: Command with arguments
value:
command: "git"
args: ["status", "--short"]
workingDir: "/path/to/repo"
timeout: 15
commandWithEnv:
summary: Command with environment variables
value:
command: "node"
args: ["script.js"]
env:
NODE_ENV: "production"
API_KEY: "secret123"
timeout: 20
combinedOutput:
summary: Command with combined stdout/stderr
value:
command: "npm"
args: ["install"]
combineOutput: true
timeout: 20
responses:
'200':
description: Command executed (check success and exitCode for actual result)
content:
application/json:
schema:
$ref: '#/components/schemas/ExecResponse'
examples:
successfulExecution:
summary: Successful command execution
value:
success: true
exitCode: 0
stdout: "file1.txt\nfile2.txt\n"
stderr: ""
executionTime: "45.23 ms"
failedExecution:
summary: Command failed with non-zero exit code
value:
success: false
exitCode: 1
stdout: ""
stderr: "Error: file not found\n"
executionTime: "12.45 ms"
timeoutError:
summary: Command timed out
value:
success: false
errorType: "exec_timeout"
errorTitle: "Execution Timeout"
errorMessage: "Command timed out after 20 seconds"
executionTime: "20000.00 ms"
'403':
description: Feature disabled or not localhost
content:
application/json:
schema:
$ref: '#/components/schemas/ExecResponse'
examples:
featureDisabled:
summary: Feature not enabled
value:
success: false
errorType: "feature_disabled"
errorTitle: "Feature Disabled"
errorMessage: "Process execution is disabled. Enable with --enable-exec flag."
notLocalhost:
summary: Request not from localhost
value:
success: false
errorType: "localhost_only"
errorTitle: "Localhost Only"
errorMessage: "This endpoint is only accessible from localhost (127.0.0.1)"
'400':
description: Invalid request (missing command, invalid JSON)
content:
application/json:
schema:
$ref: '#/components/schemas/ExecResponse'
/health:
get:
tags:
- Health
summary: Health check endpoint
description: |
Returns the health status and version information of the proxy service.
This endpoint is exempt from loop detection and can be called on any hostname.
operationId: healthCheck
responses:
'200':
description: Service is healthy
content:
application/json:
schema:
$ref: '#/components/schemas/HealthResponse'
example:
status: ok
version: 1.0.0
user-agent: "rb-slingshot/1.0.0 (https://requestbite.com/slingshot)"
components:
schemas:
ProxyRequest:
type: object
required:
- method
- url
properties:
method:
type: string
description: HTTP method for the request
enum: [GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS]
example: GET
url:
type: string
format: uri
description: Target URL to send the request to
example: https://api.example.com/users
headers:
type: object
additionalProperties:
type: string
description: HTTP headers to include in the request
example:
Authorization: Bearer token123
Content-Type: application/json
User-Agent: MyApp/1.0
body:
type: object
description: Request body (will be JSON-encoded for application/json)
example:
name: John Doe
email: john@example.com
queryParams:
type: object
additionalProperties:
type: string
description: Query parameters to append to the URL
example:
page: "1"
limit: "10"
sort: name
pathParams:
type: object
additionalProperties:
type: string
description: |
Path parameters to substitute in the URL. Replace {paramName} in the URL with the corresponding value.
Substitution happens before loop detection.
example:
userId: "123"
resourceId: "456"
timeout:
type: integer
default: 60
minimum: 1
maximum: 600
description: Request timeout in seconds
example: 30
followRedirects:
type: boolean
default: true
description: Whether to automatically follow HTTP redirects
example: true
streaming:
type: boolean
default: false
description: |
Enable streaming mode for Server-Sent Events (SSE) or chunked responses.
Response will be streamed in real-time instead of buffered.
example: false
passThrough:
type: boolean
default: false
description: |
Pass-through mode returns the raw response body with original Content-Type header
instead of wrapping it in JSON. Useful for binary data, images, or HTML pages.
example: false
ProxyResponse:
type: object
properties:
success:
type: boolean
description: Whether the proxied request succeeded
example: true
statusCode:
type: integer
description: HTTP status code from the proxied response (only present on success)
example: 200
headers:
type: object
additionalProperties:
type: string
description: Response headers from the proxied request (only present on success)
example:
content-type: application/json
cache-control: no-cache
body:
description: |
Parsed response body (JSON object/array if content-type is application/json,
otherwise a string). Only present on success.
oneOf:
- type: object
- type: array
- type: string
example:
id: 123
name: John Doe
contentType:
type: string
description: Content-Type of the response (only present on success)
example: application/json
rawResponseBody:
type: string
format: byte
description: Raw response body bytes (only used internally for pass-through mode)
errorType:
type: string
description: Error type code (only present on failure)
enum:
- request_format_error
- connection_error
- timeout_error
- unknown_error
- loop_detected
- file_not_found
- file_access_error
- streaming_timeout
- exec_timeout
- exec_failed
- localhost_only
example: connection_error
errorTitle:
type: string
description: Human-readable error title (only present on failure)
example: Connection Failed
errorMessage:
type: string
description: Detailed error message (only present on failure)
example: "dial tcp: lookup api.example.com: no such host"
cancelled:
type: boolean
description: Whether the request was cancelled (e.g., client disconnected)
example: false
FileRequest:
type: object
required:
- path
properties:
path:
type: string
description: Absolute path to the file to serve
example: /home/user/documents/file.pdf
DirectoryRequest:
type: object
properties:
path:
type: string
nullable: true
description: |
Absolute path to the directory to list. If null or omitted, defaults to the
user's home directory (falls back to / on Unix/Linux, C:\ on Windows if home unavailable).
example: /home/user/documents
showHiddenFiles:
type: boolean
nullable: true
description: Whether to show hidden files (files starting with .). Defaults to false.
example: false
DirectoryResponse:
type: object
required:
- parentDir
- currentDir
- dir
properties:
parentDir:
type: string
nullable: true
description: |
Absolute path to the parent directory. Returns null if already at the root
(e.g., / on Unix or C:\ on Windows).
example: /home/user
currentDir:
type: string
description: Absolute path to the currently listed directory
example: /home/user/documents
dir:
type: array
items:
$ref: '#/components/schemas/DirectoryEntry'
description: Array of directory entries sorted with directories first, then alphabetically
example:
- name: projects
type: directory
- name: readme.txt
type: file
sizeBytes: 2048
sizeHuman: "2 kb"
DirectoryEntry:
type: object
required:
- name
- type
properties:
name:
type: string
description: Name of the file or directory
example: readme.txt
type:
type: string
enum: [file, directory]
description: Type of entry
example: file
isSymlink:
type: boolean
description: Indicates if this entry is a symbolic link (only present for symlinks)
example: true
sizeBytes:
type: integer
format: int64
description: File size in bytes (only present for files, not directories)
example: 2048
sizeHuman:
type: string
description: |
Human-readable file size formatted as kb, MB, or GB (rounded to nearest whole number).
Only present for files, not directories.
example: "2 kb"
ExecRequest:
type: object
required:
- command
properties:
command:
type: string
description: Command to execute
example: "git"
args:
type: array
items:
type: string
description: Command arguments
example: ["status", "--short"]
timeout:
type: integer
default: 10
minimum: 1
maximum: 20
description: Execution timeout in seconds (max 20s)
example: 10
workingDir:
type: string
description: Working directory for command execution
example: "/path/to/project"
env:
type: object
additionalProperties:
type: string
description: Environment variables to set
example:
NODE_ENV: "production"
DEBUG: "true"
combineOutput:
type: boolean
default: false
description: Combine stdout and stderr into single output field
example: false
ExecResponse:
type: object
properties:
success:
type: boolean
description: Whether the command executed successfully (exit code 0)
example: true
exitCode:
type: integer
description: Command exit code (0 = success, non-zero = failure)
example: 0
stdout:
type: string
description: Standard output (only if combineOutput is false)
example: "file1.txt\nfile2.txt\n"
stderr:
type: string
description: Standard error output (only if combineOutput is false)
example: ""
combinedOutput:
type: string
description: Combined stdout and stderr (only if combineOutput is true)
example: "file1.txt\nfile2.txt\n"
executionTime:
type: string
description: Execution time in milliseconds
example: "45.23 ms"
errorType:
type: string
description: Error type (only present on failure)
enum:
- exec_timeout
- exec_failed
- feature_disabled
- localhost_only
example: "exec_timeout"
errorTitle:
type: string
description: Error title (only present on failure)
example: "Execution Timeout"
errorMessage:
type: string
description: Detailed error message (only present on failure)
example: "Command timed out after 20 seconds"
HealthResponse:
type: object
required:
- status
- version
- user-agent
properties:
status:
type: string
description: Health status of the service
enum: [ok]
example: ok
version:
type: string
description: Version of the proxy service
example: 1.0.0
user-agent:
type: string
description: User-Agent string used by the proxy for outgoing requests
example: "rb-slingshot/1.0.0 (https://requestbite.com/slingshot)"
securitySchemes: {}
security: []