To make a request for Discover Tech Stack result use this POST API.

HTTP Request

POST https://api.hexomatic.com/tool-api/discover-tech-stack?key={YOUR_API_KEY}

Parameters
Fields
YOUR_API_KEY

string

to get YOUR_API_KEY visit hexomatic settings API/Webhook section and copy your key

Request Body
Fields
source

string

you should provide a source URL

Example

{

"source": "https://example.com"

}

Response Body

if request is successful you will get

JSON representation

{

"taskId": "13f4b463-7e8a-429a-b62b-4afde618a154"

}

if request is not successful you will get

JSON representation

{

"statusCode": 403,

"message": "Forbidden"

}

To get the result for Discover Tech Stack use this GET API.

HTTP Request

GET https://api.hexomatic.com/tool-api/result/{TASK_ID}?key={YOUR_API_KEY}

Parameters
Fields
YOUR_API_KEY

string

to get YOUR_API_KEY visit hexomatic settingsand API/Webhook section and copy your key

TASK_ID

string

if you did Discover Tech Stack POST request you must have received taskId that is valid one month after making the POST request. You can try to make this GET request with apx 5 minutes frequency after making the POST request for the tool.

Response Body

if request is successful you will get

JSON representation

{

"result": {

"_tech_stack": {[

{name: "Google Font API"},

{name: "Youtube"},

{name: "Cloudflare"},

]}

}

}

if request is not successful you will get

JSON representation

{

"statusCode": 403,

"message": "Forbidden"

}