Convert any object to JSON schema

An API built with OpenAI to convert any object to JSON schema. Simply make a POST request with the object you want to convert and voila!

Try and make an API request

1const res = await fetch(
2 'https://jsonapi.gncmdev.workers.dev/api',
3 {
4 method: 'POST',
5 headers: {
6 'Content-Type': 'application/json'
7 },
8 body: JSON.stringify({message}),
9 })