ALL SYSTEMS OPERATIONAL
Social Intelligence API — v1.0

Structured data.
Seven endpoints.

SHX Modules exposes clean, structured JSON from Instagram, TikTok, Snapchat, Steam, GitHub, and Medal.tv via a unified REST interface. Username search across 140+ platforms. No API key. No account. No cost.

View Endpoints Read the docs →
FREE TO USE — NO RESTRICTIONS
07
Endpoints
REST
Protocol
JSON
Response Format
FREE
No Key Required
Endpoints
GET /api/instagram/{username}
Account recovery data
Response Fields
meta.module string Module identifier
meta.source string API source URL
account_exists boolean Account found
backup_email string | null Obfuscated email
phones array Masked phone numbers
security_question string | null Recovery question
2fa boolean | null Two-factor enabled
Example Response
{
  "meta": {
    "module": "SHX Modules",
    "source": "https://shx-osint.xyz/"
  },
  "account_exists":    true,
  "backup_email":      "j***@gmail.com",
  "phones":            ["+1 *** *** 42"],
  "security_question": null,
  "2fa":               true
}
GET /api/tiktok/{username}
Profile & statistics
Response Fields
meta.module string Module identifier
meta.source string API source URL
status number HTTP status code
execution_time string Request duration
data.username string Unique handle
data.followers string Abbreviated count
data.region string Country with flag
data.verified string Verification status
Example Response
{
  "meta": {
    "module": "SHX Modules",
    "source": "https://shx-osint.xyz/"
  },
  "status":         200,
  "execution_time": "1.24 seconds",
  "data": {
    "username":  "example",
    "fullname":  "Example User",
    "followers": "4.2M",
    "region":    "Germany",
    "verified":  "Yes",
    "private":   "Public Account"
  }
}
GET /api/snapchat/{username}
Account lookup
Response Fields
meta.module string Module identifier
meta.source string API source URL
account_exists boolean Account found
display_name string | null Display name
email null Not publicly available
phones array Masked phone numbers
Example Response
{
  "meta": {
    "module": "SHX Modules",
    "source": "https://shx-osint.xyz/"
  },
  "account_exists": true,
  "display_name":   "John Doe",
  "email":          null,
  "phones":         []
}
GET /api/steam/{username}
Profile & Steam ID
Response Fields
meta.module string Module identifier
meta.source string API source URL
account_exists boolean Account found
steam_id string | null 17-digit Steam ID
display_name string | null Persona name
profile_url string | null Steam community link
Example Response
{
  "meta": {
    "module": "SHX Modules",
    "source": "https://shx-osint.xyz/"
  },
  "account_exists": true,
  "steam_id":       "76561198401239478",
  "display_name":   "helo",
  "profile_url":    "https://steamcommunity.com/id/helo/"
}
GET /api/github/{username}
Profile & commit emails
Response Fields
meta.module string Module identifier
meta.source string API source URL
account_exists boolean Account found
user_id number GitHub user ID
emails array Emails from commits
followers number Follower count
created_at string Account creation date
twitter string | null Linked Twitter handle
Example Response
{
  "meta": {
    "module": "SHX Modules",
    "source": "https://shx-osint.xyz/"
  },
  "account_exists": true,
  "user_id":        12345678,
  "username":       "example",
  "emails":         ["user@example.com"],
  "followers":      842,
  "public_repos":   37,
  "created_at":     "2015-04-12",
  "twitter":        "exampledev"
}
GET /api/search/{username}
Username search — 140+ platforms
Response Fields
meta.module string Module identifier
meta.source string API source URL
username string Queried username
found number Platforms found on
checked number Total platforms checked
results array Found platforms only
profile_urls object Platform → URL map
Example Response
{
  "meta": {
    "module": "SHX Modules",
    "source": "https://shx-osint.xyz/"
  },
  "username": "example",
  "found":    14,
  "checked":  141,
  "results":  [ ... ],
  "found_on": ["GitHub", "Reddit", "Steam"],
  "profile_urls": {
    "GitHub": "https://github.com/example",
    "Reddit": "https://reddit.com/user/example"
  }
}
GET /api/medal/{username}
Connected accounts
Response Fields
meta.module string Module identifier
meta.source string API source URL
connections array List of connections
connections[n].type string Platform name
connections[n].handle string Account handle
connections[n].url string Profile link
Example Response
{
  "meta": {
    "module": "SHX Modules",
    "source": "https://shx-osint.xyz/"
  },
  "connections": [
    {
      "type":   "twitch",
      "handle": "example",
      "url":    "https://twitch.tv/example"
    },
    {
      "type":   "youtube",
      "handle": "@example",
      "url":    "https://youtube.com/@example"
    }
  ]
}
Base URL https://shx-osint.xyz/