Text2JSONAPI

Extracting data from text documents into a JSON format is busy work that will leave you questioning life. Not anymore. Introducing a fast, free and open-source text to JSON converter for your web apps. Currently only works for extracting string data, but looking to support more data types soon!

  • Much more faster than human capabilities
  • Pretty accurate
  • 100% free & open-source
POST

https://text-json-api.text2json.workers.dev

Results will be shown here

It's the better way

Screw converting text data manually! Let TEXT2JSONAPI do the dirty work of converting your data.

Make an API request

1const res = await fetch('https://text-json-api.text2json.workers.dev', {
2 method: 'POST',
3 headers: { 'Content-Type': 'application/json' },
4 body: JSON.stringify({
5 input: "My name is Francois Pinot Tomales ",
6 format: {
7 "REPLACEME": { "type": "string" }
8 }
9}),
10})