The executors fetch endpoint allows you to get our list of executors.
The API path for this endpoint is /api/executor/list
The response, unless errored, would be of the following structure:
[
{
"_id": "string",
"name": "string",
"patched": boolean,
"platform": "string",
"website": "string",
"discord": "string",
"version": "string",
"versionDate": "string",
"thumbnail": "string",
"store": "string",
"type": "Free/Paid"
},
...
]
If an error occurs, the response will contain a single message field:
{
"message": "string"
}