Skip to content

Website traffic

POST /v1/traffic/visits delivers real page visits to a URL, with a controlled referral source, geo/device targeting, and human-like dwell and browsing. Billed $0.0002 per delivered visit.

Terminal window
curl -X POST https://api.serplify.io/v1/traffic/visits \
-H "Authorization: Bearer live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/landing",
"quantity": 5000,
"source": "facebook",
"geo": { "country": "US" },
"device": "mixed",
"dwell_seconds_min": 20,
"dwell_seconds_max": 90,
"bounce_rate": 0.4,
"pages_per_visit": 3
}'
FieldTypeRequiredDefaultNotes
urlstring (URL)yesDestination the visit lands on.
quantityintegeryesVisits to deliver (1–1,000,000).
sourceenumnoorganicorganic, direct, facebook, twitter, reddit, pinterest, linkedin, youtube, referral.
referrerstring (URL)noCustom referrer (for source: "referral").
geoobjectno{ country? } — ISO-3166 alpha-2, country-level targeting.
deviceenumnomixeddesktop, mobile, mixed.
dwell_seconds_min / dwell_seconds_maxintegerno15 / 60Time on the landing page.
bounce_ratenumberno0.5Fraction (0–1) that bounce after landing.
pages_per_visitintegerno1Internal pages browsed (1 = landing only).
tagstringnoFree-form label.

HTTP 202 with a campaign whose product is visits. Poll status_url to watch delivered climb.

  • Each visit is a real browser page load, so client-side analytics (GA4, etc.) register it.
  • The referral source shapes the Referer and navigation pattern so the visit attributes to the chosen channel.
  • geo and device route the visit through matching residential/mobile proxies.
  • dwell_*, bounce_rate, and pages_per_visit shape realistic engagement.

You are charged only for visits actually delivered.