Skip to main content
GET
/
api
/
roblox
Roblox to Discord
curl --request GET \
  --url https://www.osintcat.net/api/roblox \
  --header 'X-API-KEY: <x-api-key>'
Find Discord accounts linked to a Roblox username. Searches our database of scraped Roblox-to-Discord mappings and returns matching profiles with Discord ID, username, and avatar where available.

Parameters

query
string
required
Roblox username. Wildcard * is supported:
  • demon* — usernames starting with demon
  • *boy — usernames ending with boy
  • *123* — usernames containing 123
Plain queries (no *) match the username exactly (case-insensitive). Up to 50 results are returned.

Headers

X-API-KEY
string
required
Your API key

Response

Returns a list of matches from the database. Each result contains the Roblox username and, if a linked Discord account is on file, the Discord ID plus username and avatar URL fetched live from Discord.
{
  "query": "demon*",
  "count": 2,
  "results": [
    {
      "roblox_name": "demonboy",
      "discord_id": "123456789012345678",
      "discord_username": "demon",
      "discord_avatar": "https://cdn.discordapp.com/avatars/123456789012345678/abc123.png?size=128"
    },
    {
      "roblox_name": "demon123",
      "discord_id": null
    }
  ]
}
If no matches are found, the API returns:
{ "error": "No matches found in database." }

Example Request

curl "https://www.osintcat.net/api/roblox?query=demon*" \
     -H "X-API-KEY: YOUR_API_KEY"