WebAtlas API Docs
  • WebAtlas API
  • Authentication
  • Rate Limiting
  • Endpoints
    • Technology Lookup
Powered by GitBook
On this page

Authentication

PreviousWebAtlas APINextRate Limiting

Last updated 5 months ago

API keys are used for authorised access. You can get your api key from accounts page after you login to the webatlas. Signup and grab your api key here

API Request

On every request you have to send your api key in the header, example

x-webatlas-api-key: xxxx-xxxx-xxxx-xxxx

Example api request to get technology list for a domain

curl --location 'https://www.webatlas.com/api/website/technology-lookup' \
--header 'x-webatlas-api-key: <your-api-key>' \
--header 'Content-Type: application/json' \
--data '{
    "website":"vercel.com" // replace with your website
}'
https://www.webatlas.com/