Forager public API endpoints documentation
Forager public API (1.0.0)
Request
The Website Details Lookup endpoint retrieves detailed information about a specific website, including its domain, web rank, traffic, and associated web technologies. This API is useful for analyzing website performance, understanding technology stack, and integrating website data into your applications.
Security
Api-Key
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
https://api-v2.forager.ai/api/{account_id}/datastorage/website_detail_lookup/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api-v2.forager.ai/api/{account_id}/datastorage/website_detail_lookup/' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"domain": "string",
"organization_id": 0,
"organization_linkedin_public_identifier": "string"
}'
Response
application/json
{ "id": 0, "domain": "http://example.com", "tranco_rank": 2147483647, "similarweb_rank": 2147483647, "similarweb_traffic": 9223372036854776000, "website_technologies": [ { … } ] }