Screenshot API Use Case
Capture Visual Data Alongside Your Scraper
Complement your scraping pipeline with visual screenshots. Bypass bot detection with stealth mode.
Key Features
Code Example
import requests
response = requests.post(
'https://goscreenapi.com/api/v1/screenshot',
headers={'X-API-Key': 'gsc_your_api_key'},
json={
'url': 'https://example.com',
'format': 'png',
'full_page': True,
'async': True,
'webhook_url': 'https://your-server.com/webhook',
}
)
data = response.json()
print(data['request_id'])
Frequently Asked Questions
Yes. Enable stealth=true to use stealth rendering that bypasses common bot detection mechanisms.
Yes. Use proxy_country with an ISO 3166-1 alpha-2 code (e.g. US, DE, TR).
Yes. Use the headers parameter with a JSON object of key-value pairs.