Turn any news homepage into a structured list of headlines, authors, and publish times.
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"
}
}
}
}
}
}
}'