Sign in
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.

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 response

{
  "data": { /* Accounts that liked a post. */ },
  "meta": {
    "endpoint": "post/likers",
    "credits_charged": 2,
    "credits_remaining": 4987,
    "next_cursor": null,
    "ms": 412
  }
}