You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: swagger.yml
+11-2Lines changed: 11 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,15 @@ openapi: 3.0.0
2
2
info:
3
3
title: CyberChef API
4
4
description: A HTTP API that exposes some of CyberChef's functionality.
5
-
version: 0.0.10
5
+
version: 1.1.0
6
6
7
7
8
8
paths:
9
9
/health:
10
10
get:
11
11
summary: Server healthcheck
12
+
tags:
13
+
- Health
12
14
description: >
13
15
If the server is up, returns a 200 response and some basic info about uptime
14
16
@@ -37,6 +39,8 @@ paths:
37
39
/bake:
38
40
post:
39
41
summary: Bakes a recipe
42
+
tags:
43
+
- Single Operations
40
44
description: >
41
45
Bake a recipe defined in JSON. For an example JSON recipe, build a recipe on
42
46
[CyberChef](https://gchq.github.io/CyberChef/) and click save. Select "clean JSON".
@@ -78,6 +82,8 @@ paths:
78
82
/magic:
79
83
post:
80
84
summary: Performs magic on some input
85
+
tags:
86
+
- Single Operations
81
87
description: >
82
88
Take some input data and optional arguments for the [Magic operation](https://github.com/gchq/CyberChef/wiki/Automatic-detection-of-encoded-data-using-CyberChef-Magic) and return JSON of results of automatic encoding detection of the inputted data.
83
89
@@ -125,6 +131,8 @@ paths:
125
131
/batch/bake:
126
132
post:
127
133
summary: Bakes a batch of data with a recipe
134
+
tags:
135
+
- Batch Operations
128
136
description: >
129
137
Bake a recipe defined in JSON over an array of input data. To obtain a JSON-formatted recipe, build a recipe on
130
138
[CyberChef](https://gchq.github.io/CyberChef/) and click save. Select "clean JSON" and copy the output.
0 commit comments