Skip to main content
GET
/
v1
/
raw
/
instagram
/
profile
/
{username}
cURL
curl --request GET \
  --url https://api.influship.com/v1/raw/instagram/profile/{username} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "username": "<string>",
    "user_id": "<string>",
    "full_name": "<string>",
    "biography": "<string>",
    "follower_count": 123,
    "following_count": 123,
    "media_count": 123,
    "is_verified": true,
    "is_private": true,
    "is_business": true,
    "is_professional": true,
    "profile_pic_url": "<string>",
    "external_url": "<string>",
    "bio_links": [
      {
        "title": "<string>",
        "url": "<string>",
        "link_type": "<string>"
      }
    ],
    "pronouns": [
      "<string>"
    ],
    "category_name": "<string>",
    "highlight_reel_count": 123,
    "engagement_rate": 123,
    "posts": [
      {
        "id": "<string>",
        "shortcode": "<string>",
        "display_url": "<string>",
        "is_video": true,
        "post_type": "image",
        "like_count": 123,
        "comment_count": 123,
        "caption": "<string>",
        "taken_at": 123,
        "accessibility_caption": "<string>",
        "video_url": "<string>",
        "thumbnail_url": "<string>",
        "view_count": 123,
        "carousel_items": [
          {
            "index": 123,
            "display_url": "<string>",
            "is_video": true,
            "video_url": "<string>",
            "thumbnail_url": "<string>"
          }
        ]
      }
    ],
    "related_profiles": [
      {
        "username": "<string>",
        "full_name": "<string>",
        "profile_pic_url": "<string>",
        "is_verified": true,
        "is_private": true
      }
    ],
    "scraped_at": "2023-11-07T05:31:56Z",
    "profile_pic_url_hd": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.influship.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

username
string
required

Username on the platform

Required string length: 1 - 50
Example:

"fitness_coach_jane"

Query Parameters

include_posts
boolean

Include recent posts in response

Example:

true

post_limit
integer
default:12

Number of posts to include

Required range: 1 <= x <= 50
Example:

12

Response

Successful response

data
object
required