GETPosts2 credits

Get likers

GET https://api.instagramapi.dev/v1/post/likers

Returns accounts that liked the post. Availability depends on the post's privacy and size.

Build this with an AI agent

Paste this prompt into Claude, Codex, or any coding agent.

Parameters

NameTypeRequiredDescription
poststringyesAn Instagram post/reel. Accepts a media id, a shortcode (`C1a2b3c4d5e`), or a full post/reel URL. We resolve it automatically.

Example request

curl "https://api.instagramapi.dev/v1/post/likers?post=https%3A%2F%2Fwww.instagram.com%2Fp%2FC1a2b3c4d5e%2F" \
  -H "Authorization: Bearer $INSTAGRAMAPI_KEY"

Try it

Live request · uses 2 credits

Example responses

Switch tabs to see the body shape for success and each error status.

{
  "data": {
    "items": [
      {
        "id": "13460080",
        "username": "nike",
        "full_name": "Nike",
        "is_verified": true,
        "is_private": false,
        "profile_pic_url": "https://instagram.com/.../nike.jpg"
      },
      {
        "id": "51049513",
        "username": "nikebasketball",
        "full_name": "Nike Basketball",
        "is_verified": true,
        "is_private": false,
        "profile_pic_url": "https://instagram.com/.../nike.jpg"
      }
    ],
    "next_cursor": null
  },
  "meta": {
    "endpoint": "post/likers",
    "request_id": "req_3f8a1c9e",
    "credits_charged": 2,
    "credits_remaining": 4987,
    "ms": 412
  }
}

Response fields

Fields returned under data on a 200 response. Every response also includes a meta object with billing info.

FieldTypeDescription
itemsarray<object>Accounts that liked the post.
items[].idstringNumeric account id (stable even if the username changes).
items[].usernamestringThe account's @handle.
items[].full_namestringDisplay name shown on the profile (may be empty).
items[].is_verifiedbooleanWhether the account has a verified badge.
items[].is_privatebooleanWhether the account is private.
items[].profile_pic_urlstringURL of the account's profile picture.
next_cursornullAlways null. This endpoint returns a single page and isn't paginated.