API catalog / Instagram API

Instagram API

Preview

Public Instagram profile data with a stable, consistent schema.

https://api.endpointry.com/v1/instagram

Quick start

curl
curl "https://api.endpointry.com/v1/instagram/profile" \
  -H "Authorization: Bearer sk_live_..."
  • • Authentication: Authorization: Bearer with your single platform key
  • • Envelope: every success response is { data, meta }
  • • Errors: RFC 9457 problem+json with stable codes
  • • Pagination: opaque cursors via meta.next_cursor

Example response

200 · application/json
{
  "meta": {
    "request_id": "req_7729f93d3facf68ff83e5c50",
    "as_of": "2026-08-01T12:00:00.000Z"
  },
  "data": {
    "profile": {
      "id": "25025320",
      "username": "instagram",
      "full_name": "Instagram",
      "biography": "Discover what's new on Instagram 🔎✨",
      "external_url": "https://help.instagram.com/",
      "followers": 685834161,
      "following": 267,
      "posts": 8542,
      "is_verified": true,
      "is_private": false,
      "is_business": false,
      "category": null,
      "profile_pic_url": "https://scontent.cdninstagram.com/v/t51.2885-19/…jpg",
      "highlight_reels": 10
    }
  }
}

Endpoints

GET/v1/instagram/profile

Get a public profile

Returns the public profile for a username: identity, follower and post counts, verification and account type, category and avatar. Private accounts return their public header only. Unknown usernames return 404 NOT_FOUND.

Query parameterseditable
username *string
Response fields (data)
profile*object
id*string
username*string
full_name*string
biography*string | null
external_url*string · uri | null
followers*integer
following*integer
posts*integer
is_verified*boolean
is_private*boolean
is_business*boolean
category*string | null
profile_pic_url*string · uri
highlight_reels*integer
Request
curl "https://api.endpointry.com/v1/instagram/profile" \
  -H "Authorization: Bearer sk_live_..."
Loading…
Responseexample
200 · application/json
{
  "meta": {
    "request_id": "req_7729f93d3facf68ff83e5c50",
    "as_of": "2026-08-01T12:00:00.000Z"
  },
  "data": {
    "profile": {
      "id": "25025320",
      "username": "instagram",
      "full_name": "Instagram",
      "biography": "Discover what's new on Instagram 🔎✨",
      "external_url": "https://help.instagram.com/",
      "followers": 685834161,
      "following": 267,
      "posts": 8542,
      "is_verified": true,
      "is_private": false,
      "is_business": false,
      "category": null,
      "profile_pic_url": "https://scontent.cdninstagram.com/v/t51.2885-19/…jpg",
      "highlight_reels": 10
    }
  }
}
GET/v1/instagram/posts

Get recent posts

Returns a public account's most recent posts — image, video/reel and carousel — each with its permalink, caption, like and comment counts, media and thumbnail URLs, dimensions and publish time. Shares the profile snapshot, so a posts call right after a profile call is served from cache. Pagination is cursor-based; today the source serves the latest window, so next_cursor is null.

Query parameterseditable
username *string
limit *number · 1–12
cursorstring
Response fields (data)
posts*array<object>
id*string
shortcode*string
url*string · uri
type*"image" | "video" | "carousel"
caption*string | null
likes*integer | null
comments*integer | null
media_url*string · uri
thumbnail_url*string · uri
width*integer
height*integer
taken_at*string · date-time
Request
curl "https://api.endpointry.com/v1/instagram/posts" \
  -H "Authorization: Bearer sk_live_..."
Loading…
Responseexample
200 · application/json
{
  "meta": {
    "request_id": "req_7729f93d3facf68ff83e5c50",
    "as_of": "2026-08-01T12:00:00.000Z",
    "pagination": {
      "next_cursor": null,
      "limit": 12,
      "returned": 1
    }
  },
  "data": {
    "posts": [
      {
        "id": "3953558216907780078",
        "shortcode": "Dbd3EBdnW_u",
        "url": "https://www.instagram.com/p/Dbd3EBdnW_u/",
        "type": "image",
        "caption": "Are you ready for the total solar eclipse?",
        "likes": 245158,
        "comments": 385,
        "media_url": "https://scontent.cdninstagram.com/v/t51.2885-15/…jpg",
        "thumbnail_url": "https://scontent.cdninstagram.com/v/t51.2885-15/…jpg",
        "width": 1080,
        "height": 856,
        "taken_at": "2026-07-31T18:41:36.000Z"
      }
    ]
  }
}

Ready to build with Instagram API?

Included in every plan — one subscription covers the whole catalog.