Skip to content

Forager public API (1.0.0)

Forager public API endpoints documentation

Download OpenAPI description
Languages
Servers

https://api-v2.forager.ai/

Operations
Operations
Operations
Operations

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
Path
account_idintegerrequired
Body
domainstring
organization_idinteger
organization_linkedin_public_identifierstring
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"
  }'

Responses

Bodyapplication/json
idintegerread-onlyrequired
domainstring(uri)<= 200 charactersrequired
tranco_rankinteger or null[ 0 .. 2147483647 ]

The Tranco three month average traffic rank

similarweb_rankinteger or null[ 0 .. 2147483647 ]
similarweb_trafficinteger or null(int64)[ 0 .. 9223372036854776000 ]
website_technologiesArray of objects(WebSiteTechnology)read-onlyrequired
website_technologies[].​web_technology_idintegerread-onlyrequired
website_technologies[].​is_activeboolean(Is active?)
website_technologies[].​namestringread-onlyrequired

Get WebTechnology name.

Response
application/json
{ "id": 0, "domain": "http://example.com", "tranco_rank": 2147483647, "similarweb_rank": 2147483647, "similarweb_traffic": 9223372036854776000, "website_technologies": [ {} ] }
Operations
Operations