ScrapeGraphAI

Product details

Q: CURL + TopUp Pricing

Hi there, wondering if you got any examples for using cURL with json schema + info on response codes.

Also, at which price we may top up once credits are gone or is this more sort of a promo and pricing will be as is at the time of "renewal"?

nl8Mar 26, 2025
Founder Team
Marco_ScrapeGraphAI

Marco_ScrapeGraphAI

Mar 26, 2025

A: heres an example of cURL:
curl -X 'POST' \
'https://api.scrapegraphai.com/v1/smartscraper' \
-H 'accept: application/json' \
-H 'SGAI-APIKEY: sgai-********************' \
-H 'Content-Type: application/json' \
-d '{
"website_url": "https://example.com",
"user_prompt": "Extract the product prices from the provided e-commerce website.",
"output_schema": {
"type": "object",
"title": "ProductPriceSchema",
"properties": {
"product_name": {
"type": "string",
"title": "product_name",
"description": "The name of the product"
},
"price": {
"type": "number",
"title": "price",
"description": "The price of the product"
}
},
"required": [
"product_name",
"price"
],
"$defs": {}
}
}'

When the credits will be finished you can take a look at the following infos:
https://scrapegraphai.com/pricing/

Share
Helpful?
Log in to join the conversation