From 54fff78a69c9a9954e44f0a8af75d53774dd047c Mon Sep 17 00:00:00 2001 From: mohammadehsanansari Date: Wed, 3 Sep 2025 16:13:14 +0530 Subject: [PATCH] hotfix --- sdks/mocking.mdx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/sdks/mocking.mdx b/sdks/mocking.mdx index 6cf8bdf..d37b1fc 100644 --- a/sdks/mocking.mdx +++ b/sdks/mocking.mdx @@ -354,20 +354,16 @@ export SGAI_MOCK_RESPONSES='{ "total_credits_used": 0, "mock": true }, - "/v1/smartscraper/start": { - "job_id": "mock-job-123", - "status": "processing", - "mock": true - } }' # Test smartscraper endpoint -curl -X POST "https://api.scrapegraph.ai/v1/smartscraper/start" \ +curl -X POST "https://api.scrapegraph.ai/v1/smartscraper/" \ -H "Authorization: Bearer $SGAI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "website_url": "https://example.com", "user_prompt": "Extract title and content" + "mock": true }' ```