{
"url": "https://scrapegraphai.com/",
"prompt": "What does the company do? and I need text content from there privacy and terms",
"cache_website": true,
"depth": 2,
"max_pages": 2,
"same_domain_only": true,
"batch_size": 1,
"stealth": true,
"rules": {
"include_paths": ["/privacy", "/terms", "/about"],
"exclude_paths": ["/admin/*", "/api/**"],
"same_domain": true
},
"schema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ScrapeGraphAI Website Content",
"type": "object",
"properties": {
"company": {
"type": "object",
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"features": {
"type": "array",
"items": { "type": "string" }
},
"contact_email": { "type": "string", "format": "email" },
"social_links": {
"type": "object",
"properties": {
"github": { "type": "string", "format": "uri" },
"linkedin": { "type": "string", "format": "uri" },
"twitter": { "type": "string", "format": "uri" }
},
"additionalProperties": false
}
},
"required": ["name", "description"]
},
"services": {
"type": "array",
"items": {
"type": "object",
"properties": {
"service_name": { "type": "string" },
"description": { "type": "string" },
"features": {
"type": "array",
"items": { "type": "string" }
}
},
"required": ["service_name", "description"]
}
},
"legal": {
"type": "object",
"properties": {
"privacy_policy": { "type": "string" },
"terms_of_service": { "type": "string" }
},
"required": ["privacy_policy", "terms_of_service"]
}
},
"required": ["company", "services", "legal"]
}
}