Quick Start Guide
Create a key, validate it without a charge, run Search, and scrape a page using the live Venym Search API.
Canonical production origin
All examples use
https://search.venym.io.01
Create an API key
Sign up
Create a Venym Search account.
Open Dashboard
Go to API Keys after signing in.
Keep it server-side
Store the key in VENYM_SEARCH_API_KEY.
02
Validate the key
Validation is free and returns the active state, plan, and current credit balance.
GET /api/v1/validatecURL
curl https://search.venym.io/api/v1/validate \
-H "Authorization: Bearer $VENYM_SEARCH_API_KEY"03
Run your first Search
POST
https://search.venym.io/api/v1/searchSearch uses a 2-credit base charge. Set auto_scrape_top only when you need page content.
First Search request
curl -X POST https://search.venym.io/api/v1/search \
-H "Authorization: Bearer $VENYM_SEARCH_API_KEY" \
-H "Content-Type: application/json" \
--data '{"query":"latest AI developments","max_results":5}'04
Scrape a page
POST
https://search.venym.io/api/v1/scrapeScrape accepts one URL and returns structured primary_content.
First Scrape requestcURL
curl -X POST https://search.venym.io/api/v1/scrape \
-H "Authorization: Bearer $VENYM_SEARCH_API_KEY" \
-H "Content-Type: application/json" \
--data '{"url":"https://example.com","extract_options":["title","text"]}'05
Handle responses
200
Read the response body and credits_used.
401 / 403
Fix the key or upgrade for a gated feature.
429 / 500
Honor Retry-After or use request_id for support.