← All use cases

Extract headlines and article metadata from any news site

Turn any news homepage into a structured list of headlines, authors, and publish times.

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://news.ycombinator.com",
    "schema": {
      "type": "object",
      "properties": {
        "articles": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "headline": {
                "type": "string"
              },
              "author": {
                "type": "string"
              },
              "published_at": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }'
Get an API keyFull API docs