Datacenter detection
Treat hosting ASNs differently from residential ISP traffic at signup or login.
Intelligence API
Resolve ASN, organization, announced prefix, and a simple network_type (hosting, isp, education, government, or unknown). One Syndaq API call for datacenter detection and access policies.
At a glance
Use cases
Treat hosting ASNs differently from residential ISP traffic at signup or login.
Pair ASN context with GeoIP for richer network intelligence in your stack.
Roll up events by ASN or network type in your warehouse.
Allowlist education/gov networks or challenge hosting ranges.
Integration
Subscribe to an ASN plan and copy your as_sec_ secret key.
Pass any public IPv4 or IPv6 address.
Branch on hosting vs isp (and more) in your application logic.
Example
Every response includes a request_id for support correlation.
Rate limit and quota headers are returned on authenticated routes so you can backoff gracefully.
Authenticated with your Syndaq secret key over HTTPS. network_type is a heuristic based on organization text—useful for triage, not a legal classification.
curl -s "https://api.syndaq.com/v1/asn/lookup/8.8.8.8" \
-H "Authorization: Bearer as_sec_YOUR_SECRET_KEY"
{
"success": true,
"ip": "8.8.8.8",
"cached": true,
"asn": 15169,
"as_org": "GOOGLE - Google LLC, US",
"network": "8.8.8.0/24",
"country_code": "US",
"network_type": "hosting",
"request_id": "d4e5f6789012345678901234abcdef01"
}
Reference
Included with your Syndaq ASN plan.
| Method | Path | Description |
|---|---|---|
| GET | /v1/asn/lookup |
Lookup ASN and network type by ?ip= query parameter. |
| GET | /v1/asn/lookup/{ip} |
Lookup ASN and network type for an IP in the URL path. |
| GET | /v1/asn/status |
Returns plan limits and quota for the authenticated key. |
Pricing
Transparent limits. Upgrade when your traffic grows—no surprise overages without a plan change.
Development and light production lookups.
Higher throughput for production apps.
High-volume lookups with priority limits.
FAQ
Pick a plan, create your keys in the client area, and start calling the API in minutes.
Choose a plan Ask a question