Technology Lookup
Request
Find all the technologies a particular website is using with this api endpoint
curl --location 'https://www.webatlas.com/api/v1/website/technology-lookup' \
--header 'x-webatlas-api-key: <your-api-key>' \
--header 'Content-Type: application/json' \
--data '{
"website":"vercel.com" // replace with your website
}'
Replace <your-api-key
with the key obtained from Authentication page.
Sample Response
{
"ok": true,
"data": [
{
"name": "React",
"website": "reactjs.org",
"description": "React is an open-source JavaScript library for building user interfaces or UI components."
},
{
"name": "Google Analytics",
"website": "google.com",
"description": "Google Analytics is a free web analytics service that tracks and reports website traffic."
},
{
"name": "SWC",
"website": "swc.rs",
"description": "SWC is an extensible Rust-based platform for the next generation of fast developer tools."
},
...
],
"status": 200
}
Last updated