GETProfiles2 credits
Get stories
GET https://api.instagramapi.dev/v1/profile/storiesReturns the account's currently live stories (expire after 24h). No pagination.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| handle | string | yes | An Instagram account. Accepts a username (`nike`), a numeric user id (`13460080`), or a full profile URL (`https://instagram.com/nike`). We resolve it automatically. |
Example request
curl "https://api.instagramapi.dev/v1/profile/stories?handle=nike" \
-H "Authorization: Bearer $INSTAGRAMAPI_KEY"Try it
Live request · uses 2 creditsExample response
{
"data": { /* Currently-active stories for an account. */ },
"meta": {
"endpoint": "profile/stories",
"credits_charged": 2,
"credits_remaining": 4987,
"next_cursor": null,
"ms": 412
}
}