← All use cases

Extract structured menu data from restaurant websites

Turn a restaurant's menu page into structured items, descriptions, and prices for building delivery/ordering integrations.

Example request

curl -X POST https://api.jsonit.io/v1/extract \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example-restaurant.com/menu",
    "schema": {
      "type": "object",
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "description": {
                "type": "string"
              },
              "price": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }'
Get an API keyFull API docs