
Net apps are accepting quite a few forms of inputs, from fundamental textual content to code to imagery, recordsdata, and extra. It is necessary that we validate the contents we obtain however in the event you do enable arbitrary textual content, it is good to know what precisely has been submitted so you possibly can current it correctly. Enter the Code Detection API — an API that permits you to detect code in textual content!
Fast Hits
- Detects code block inside arbitrary textual content enter
- Proposes the detected language and codecs enter accordingly
- Helps dozens of programming languages
- Glorious documentation with quite a few code examples
- Helps to format communications between distant staff
- Begin totally free!
- Delivered to you by APILayer, the wonderful API workshop

After signing up totally free, you are prepared to start out utilizing the API within the programming language of your selection!
You possibly can ship a request utilizing cURL from command line:
curl --request POST --url 'https://api.runtime.dev/tlp?apikey=API_KEY' --header 'Content material-Kind: utility/json' --data '{ "iterable": [ { "value": "console.log('''hello world''');" } ]
You will get a response detailing the code contents and likelihood inside it:
{ "iterable": [ { "naturalLanguage": { "result": false, "likelihood": 0.7526542246341705, "tokens": [ 1997, 15, 260, 9, 8, 2959, 2270, 8, 1998, 0, 0, ... ], "normalized": "console.log('hey world');" }, "codeClassification": { "end result": { "chance": 0.5053786565, "present": "javascript", "lookup": { "javascript": { "household": "JAVASCRIPT", "readable": "Widespread Javascript Code", "options": [ "js" ], "identify": "javascript" } } }, /* ... */
I am actually enthusiastic about what Code Detection API brings, particularly when you think about how tough it might be to put in writing this your self. With the array of outcomes which cowl all the content material, you might plainly current textual content contents alongside aspect code blocks. You might accomplish that for a weblog publish, inner communications or distant worker chat, developer documentation, and extra.

My first intuition when making an attempt Code Detection API was that it was merely for formatting potential tech weblog posts, however the case research show a lot extra. Code Detection API could possibly be used for blogs, developer documentation, social community enter shows, and extra. If you wish to show arbitrary textual content as formatted code, undoubtedly check out Code Detection API!