Tools Catalog
List tools
List tools available to the authenticated account.
GET
/
tools
List tools
curl --request GET \
--url https://api.osint.ly/tools \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.osint.ly/tools"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.osint.ly/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.osint.ly/tools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.osint.ly/tools"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.osint.ly/tools")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.osint.ly/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"name": "Epic Games",
"description": "Validate and enrich Epic account identifiers, linked accounts, tags, regions, creator data, friends, and achievements.",
"image": "/images/tools/epic-games.svg",
"routePath": "/epic-games",
"categories": [
"Gaming",
"Accounts",
"Social"
],
"featured": false
},
{
"name": "Vehicle History Finder",
"description": "Vehicle history enrichment endpoints for US VINs and French license plates.",
"image": "/images/tools/vehicle-history-finder.svg",
"routePath": "/vehicle-history-finder",
"categories": [
"Automotive",
"History",
"VIN"
],
"featured": false
},
{
"name": "Xbox",
"description": "Validate and enrich Xbox Live account intelligence, including profiles, presence, social metadata, games, media, clubs, and title achievements.",
"image": "/images/tools/xbox.svg",
"routePath": "/xbox",
"categories": [
"Gaming",
"Accounts",
"Social"
],
"featured": false
},
{
"name": "PlayStation Network",
"description": "Validate and enrich PlayStation Network account intelligence, including profiles, presence, trophies, and games.",
"image": "/images/tools/playstation.svg",
"routePath": "/playstation",
"categories": [
"Gaming",
"Accounts",
"Social"
],
"featured": false
},
{
"name": "Roblox",
"description": "Validate and enrich Roblox account intelligence, including profiles, social counts, friends, groups, games, badges, and collectibles.",
"image": "/images/tools/roblox.svg",
"routePath": "/roblox",
"categories": [
"Gaming",
"Accounts",
"Social"
],
"featured": false
}
],
"meta": {
"page": 1,
"limit": 250,
"total": 5,
"timestamp": "2026-06-28T12:00:00.000Z"
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "Unauthorized",
"details": "A valid API key is required"
},
"meta": {
"timestamp": "2026-06-28T12:00:00.000Z"
}
}{
"error": {
"code": "PLAN_FEATURE_REQUIRED",
"message": "Plan feature required",
"details": "Tools require a paid API subscription with the tools feature enabled"
},
"meta": {
"timestamp": "2026-06-28T12:00:00.000Z"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Maximum string length:
80Required range:
1 <= x <= 250Required range:
1 <= x <= 10000Maximum string length:
120Maximum string length:
80Available options:
popular, usage-desc, usage-asc, recent, name-asc, name-desc, rating Available options:
preview, full Response
Tools catalog response
The response is of type object.
Was this page helpful?
⌘I
List tools
curl --request GET \
--url https://api.osint.ly/tools \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.osint.ly/tools"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.osint.ly/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.osint.ly/tools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.osint.ly/tools"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.osint.ly/tools")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.osint.ly/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"name": "Epic Games",
"description": "Validate and enrich Epic account identifiers, linked accounts, tags, regions, creator data, friends, and achievements.",
"image": "/images/tools/epic-games.svg",
"routePath": "/epic-games",
"categories": [
"Gaming",
"Accounts",
"Social"
],
"featured": false
},
{
"name": "Vehicle History Finder",
"description": "Vehicle history enrichment endpoints for US VINs and French license plates.",
"image": "/images/tools/vehicle-history-finder.svg",
"routePath": "/vehicle-history-finder",
"categories": [
"Automotive",
"History",
"VIN"
],
"featured": false
},
{
"name": "Xbox",
"description": "Validate and enrich Xbox Live account intelligence, including profiles, presence, social metadata, games, media, clubs, and title achievements.",
"image": "/images/tools/xbox.svg",
"routePath": "/xbox",
"categories": [
"Gaming",
"Accounts",
"Social"
],
"featured": false
},
{
"name": "PlayStation Network",
"description": "Validate and enrich PlayStation Network account intelligence, including profiles, presence, trophies, and games.",
"image": "/images/tools/playstation.svg",
"routePath": "/playstation",
"categories": [
"Gaming",
"Accounts",
"Social"
],
"featured": false
},
{
"name": "Roblox",
"description": "Validate and enrich Roblox account intelligence, including profiles, social counts, friends, groups, games, badges, and collectibles.",
"image": "/images/tools/roblox.svg",
"routePath": "/roblox",
"categories": [
"Gaming",
"Accounts",
"Social"
],
"featured": false
}
],
"meta": {
"page": 1,
"limit": 250,
"total": 5,
"timestamp": "2026-06-28T12:00:00.000Z"
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "Unauthorized",
"details": "A valid API key is required"
},
"meta": {
"timestamp": "2026-06-28T12:00:00.000Z"
}
}{
"error": {
"code": "PLAN_FEATURE_REQUIRED",
"message": "Plan feature required",
"details": "Tools require a paid API subscription with the tools feature enabled"
},
"meta": {
"timestamp": "2026-06-28T12:00:00.000Z"
}
}