List Tools
List available red team tools and their supported attack categories.
GET
/
v1
/
tools
List Tools
curl --request GET \
--url https://api.example.com/v1/toolsimport requests
url = "https://api.example.com/v1/tools"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/tools"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
{
"tool": "<string>",
"categories": [
"<string>"
]
}
]Last modified on April 21, 2026
Was this page helpful?
⌘I
List Tools
curl --request GET \
--url https://api.example.com/v1/toolsimport requests
url = "https://api.example.com/v1/tools"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/tools"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
{
"tool": "<string>",
"categories": [
"<string>"
]
}
]