> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Post Comments

> Post Comments

The comment thread of a post by URL.

## Example

```bash theme={null}
curl "https://api.aisa.one/apis/v1/instagram/post/comments?url=VALUE" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/instagram.json GET /instagram/post/comments
openapi: 3.0.0
info:
  title: Instagram API
  description: >-
    Read public Instagram data — profiles, posts, reels, comments, transcripts,
    and search.
  version: 1.0.0
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /instagram/post/comments:
    get:
      tags:
        - Instagram API
      summary: Post Comments
      description: >-
        Retrieves comments on a public Instagram post or reel. Each comment
        includes the comment text, creation timestamp, and commenter details
        such as username, user ID, verification status, and profile picture URL.
        Supports cursor-based pagination to load additional comment pages.
      operationId: get_instagram-post-comments
      parameters:
        - name: url
          in: query
          required: true
          description: The URL of the post or reel to get comments from
          schema:
            type: string
          example: https://www.instagram.com/reel/DOq6eV6iIgD
        - name: cursor
          in: query
          required: false
          description: >-
            The cursor to get more comments. Get 'cursor' from previous
            response.
          schema:
            type: string
          example: eyJjYWNoZWRfY29tbWVud...
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example:
                success: true
                credits_remaining: 33929114
                comments:
                  - id: '18051843701642870'
                    text: >-
                      "...but who wants to know people who don't love animals
                      anyway?". ❤️
                    created_at: '2025-09-16T17:03:04.000Z'
                    comment_like_count: 0
                    user:
                      is_verified: false
                      id: '46773599357'
                      pk: '46773599357'
                      is_unpublished: null
                      profile_pic_url: >-
                        https://scontent-dfw5-1.cdninstagram.com/v/t51.2885-19/542013919_18051324464559358_4060586438619554592_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDgwLmMyIn0&_nc_ht=scontent-dfw5-1.cdninstagram.com&_nc_cat=110&_nc_oc=Q6cZ2QEVOAPWq7DXE6cVfhoMQb0GTMvPo_vizELP9TUgQylvA5jBW1WSonDzvjeTQpAGJ3w&_nc_ohc=b__bzrMG6kYQ7kNvwGXM67R&_nc_gid=oDBffhoPbGLAq2tbCGpGKg&edm=AKp6CbIBAAAA&ccb=7-5&oh=00_AflThVwZ86n6DiACA5-zJCNFQZWBwHfaG6AXZclgea57BA&oe=695A3139&_nc_sid=d62176
                      username: catherina_thijs
                      fbid_v2: '17841446780736699'
                cursor: AQHSpoi6HyDbzYRMzrD.........
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````