Skip to main content

Products

NexaLayer exposes two product types: dynamic (rotating IP, pay per traffic) and static (fixed IP, pay per duration). Use the product API to list available products and get recommendations before creating sessions.

Product types

TypeDescriptionBilling
DynamicRotating IPs; suitable for scraping, data collectionPer traffic (GB)
StaticFixed IPs; suitable for account management, SEO monitoringPer duration (e.g. 30/90 days)

List products

curl -X GET "https://api.nexalayer.net/v1/products" \
  -H "X-API-Key: <api_key>"
Response shape: data.items[] with product_no, name, type, price, unit, and related fields. Use product_no in session config when calling POST /sessions.

List regions

curl -X GET "https://api.nexalayer.net/v1/products/regions" \
  -H "X-API-Key: <api_key>"

Product recommendation

Get recommended products by use case and constraints.
curl -X POST "https://api.nexalayer.net/v1/products/recommend" \
  -H "X-API-Key: <api_key>" \
  -H "Content-Type: application/json" \
  -d '{
    "use_case": "web_scraping",
    "target_region": "US",
    "budget": 100.00,
    "session_count": 5,
    "require_sticky_ip": false
  }'
use_case examples: web_scraping, data_collection, account_management, ad_verification, seo_monitoring, market_research, general. Response contains recommended products; use their product_no in POST /sessions config. Next: Sessions overview, Dynamic session, Static session.