We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7d57c5 commit 11c7e95Copy full SHA for 11c7e95
docs/rest-api.md
@@ -286,3 +286,27 @@ curl -X POST \
286
}
287
288
```
289
+
290
+## GET /get-languages
291
292
+Returns programming language supported by bblfsh server.
293
294
+```bash
295
+curl -X GET http://localhost:8080/get-languages
296
+```
297
298
+```json
299
+{
300
+ "status": 200,
301
+ "data": [
302
+ { "id": "python", "name": "Python" },
303
+ { "id": "java", "name": "Java" },
304
+ { "id": "javascript", "name": "JavaScript" },
305
+ { "id": "bash", "name": "Bash" },
306
+ { "id": "ruby", "name": "Ruby" },
307
+ { "id": "go", "name": "Go" },
308
+ { "id": "php", "name": "PHP" }
309
+ ]
310
+}
311
312
0 commit comments