The Username Footprint API checks whether a given username is registered across social media, gaming, and community platforms.
It returns a summary and a per-platform breakdown including secondary metadata like profile IDs or account status where available.
Lookup Username
GET https://www.osintcat.net/api/user-footprint
The username to scan (e.g., johndoe)
Response Body
The username that was checked.
Total number of platforms checked
Number of platforms where the username was found
Number of platforms where the username was not found
List of platform results. Platform domain (e.g., github.com)
True if the username is registered on this platform
Detection method (API or REGISTER)
Duration of the check for this platform
Metadata retrieved from the platform (profile IDs, avatar URLs, follower counts, etc.)
curl "https://www.osintcat.net/api/user-footprint?query=johndoe" \
-H "X-API-KEY: YOUR_API_KEY"
Example Response
{
"username" : "johndoe" ,
"stats" : {
"total_checked" : 112 ,
"registered_count" : 34 ,
"not_registered_count" : 78
},
"results" : [
{
"domain" : "github.com" ,
"taken" : true ,
"type" : "API" ,
"time_taken" : "0.9s" ,
"ExtraData" : {
"ProfileURL" : "https://github.com/johndoe" ,
"PublicRepos" : 17
}
},
{
"domain" : "reddit.com" ,
"taken" : false ,
"type" : "REGISTER" ,
"time_taken" : "1.1s" ,
"ExtraData" : {}
}
]
}