Summary

One call, one concise AI summary of any URL — no scrape + LLM round-trip required.

POST/api/v1/summary

Request body

FieldTypeDescription
urlrequiredstringAbsolute URL to summarize.
bash
curl https://neuroapi.me/api/v1/summary \
-H "Authorization: Bearer $NEUROAPI_KEY" \
-H "Content-Type: application/json" \
-d '{ "url": "https://en.wikipedia.org/wiki/Web_scraping" }'

Example response

json
{
"success": true,
"data": {
"summary": "Web scraping is the automated extraction of data from websites using bots or scripts. It is used for price monitoring, research, lead generation, and AI training data.",
"metadata": { "sourceURL": "https://en.wikipedia.org/wiki/Web_scraping", "statusCode": 200 }
},
"creditsCharged": 1
}

Cost: 1 credit.