Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Instagram Account Checker & Intelligence API

OSINT Trace - Direct API (Recommended) API.Market RapidAPI

An enterprise-grade OSINT API to verify Instagram account existence and retrieve rich profile intelligence (numerical User IDs, follower/following metrics, post counts, biography, HD avatar URLs, verified badges, account type, and profile links) by username, email address, or phone number.

Table of Contents


Features

Instant Verification: Real-time presence verification for Instagram profiles.
Multi-Identifier Input: Accepts usernames, email addresses, and E.164 phone numbers.
Deep Metadata Extraction: Returns numerical User IDs, display names, biographies, follower/following counts, total post counts, verified badges, private account status, business account category, external links, and direct profile URLs.
High Performance: Asynchronous architecture with high-speed proxy cycling and anti-bot bypass.
Developer-Friendly: Available via direct REST API on OSINT Trace (Recommended) and major developer marketplaces.


Getting Started

1. Get API Key

2. Base URL & Authentication

Authentication headers and endpoints vary by provider:

Provider Base URL Auth Header Endpoint
OSINT Trace (Direct - Recommended) https://api.osinttrace.com/v1 x-osint-key: YOUR_OSINT_KEY POST /check/instagram
API.Market https://prod.api.market/api/v1/osint-trace-1/instagram-checker X-Api-Key: YOUR_API_KEY POST /check/instagram
RapidAPI https://instagram-checker.p.rapidapi.com X-RapidAPI-Key: YOUR_API_KEY
X-RapidAPI-Host: instagram-checker.p.rapidapi.com
POST /check

API Endpoints

Single Account Check

Endpoint (OSINT Trace Direct - Recommended):

POST https://api.osinttrace.com/v1/check/instagram

Request Body:

{
  "input": "target_username"
}

Code Examples

OSINT Trace Direct API (cURL) — Recommended
curl --request POST \
     --url https://api.osinttrace.com/v1/check/instagram \
     --header 'x-osint-key: YOUR_OSINT_KEY' \
     --header 'Content-Type: application/json' \
     --data '{"input": "target_username"}'
API.Market (cURL)
curl --request POST \
     --url https://prod.api.market/api/v1/osint-trace-1/instagram-checker/check/instagram \
     --header 'X-Api-Key: YOUR_API_KEY' \
     --header 'Content-Type: application/json' \
     --data '{"input": "target_username"}'
RapidAPI (cURL)
curl --request POST \
     --url https://instagram-checker.p.rapidapi.com/check \
     --header 'X-RapidAPI-Host: instagram-checker.p.rapidapi.com' \
     --header 'X-RapidAPI-Key: YOUR_API_KEY' \
     --header 'Content-Type: application/json' \
     --data '{"input": "target_username"}'

Additional code snippets for Python, Node.js, Go, PHP, C#, Java, and Shell are available in the examples/ directory.


Response Format

Account Found (With Metadata)

{
  "live": true,
  "note": null,
  "metadata": {
    "user_id": "1234567890",
    "username": "cyber_analyst",
    "name": "Alex Smith",
    "bio": "Security Researcher & OSINT Enthusiast 🔍",
    "avatar_url": "https://scontent.cdninstagram.com/v/t51.2885-19/example_avatar.jpg",
    "followers": 12500,
    "following": 340,
    "posts": 87,
    "is_private": false,
    "is_verified": true,
    "is_business": false,
    "category": "Creator",
    "external_url": "https://osinttrace.com",
    "profile_url": "https://www.instagram.com/cyber_analyst"
  }
}

Account Not Found

{
  "live": false,
  "note": null,
  "metadata": null
}

HTTP Status Codes

Status Code Description Rationale
200 OK Success Query processed and presence/metadata returned.
400 Bad Request Validation Error Malformed request body or input under minimum length.
401 Unauthorized Authentication Required Missing, invalid, or expired API key header.
403 Forbidden Quota / Subscription Error Quota balance exhausted or subscription inactive.
408 Request Timeout Timeout Upstream verification exceeded maximum execution window.
429 Too Many Requests Rate Limit Exceeded Exceeded 1 request/second limit.

Requirements

  • Minimum input length: 3 characters
  • Supported input formats:
    • Usernames (instagram_user)
    • Email addresses (user@example.com)
    • Phone numbers (E.164 standard recommended: +1234567890)
  • Rate Limit: 1 request per second per active API key.

Pricing

  • Direct Plans (Recommended): Flexible subscription tiers and bulk volume pricing available on OSINT Trace Pricing.
  • Marketplace Plans: Subscriptions also available through API.Market and RapidAPI.
  • Free Tier: Free tier available for evaluation and testing.

Support

For technical inquiries, enterprise SLA plans, or integration assistance:
📧 Email: support@osinttrace.com
🌐 Website: osinttrace.com


Legal Compliance

This API is designed for legitimate cybersecurity investigation, fraud prevention, brand monitoring, and threat intelligence. Users must:

  • Comply with applicable local and international data protection regulations (e.g., GDPR, CCPA).
  • Adhere to Instagram's Terms of Service and acceptable use policies.
  • Ensure lawful basis for investigative data processing.

This service is independently operated by OSINT Trace and is not affiliated with or endorsed by Meta Platforms, Inc. or Instagram.

About

Enterprise OSINT API to verify Instagram account existence & extract deep profile metadata (numerical User IDs, follower metrics, bio, HD avatars, verified badges).

Topics

Resources

Stars

3 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors