> ## 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.

# Trending Reels

> Trending Reels

Currently trending reels.

## Example

```bash theme={null}
curl "https://api.aisa.one/apis/v1/instagram/reels/trending" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/instagram.json GET /instagram/reels/trending
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/reels/trending:
    get:
      tags:
        - Instagram API
      summary: Trending Reels
      description: >-
        Fetches trending reels from Instagram's public instagram.com/reels page.
        Instagram only gives a small batch at a time and the results can
        overlap, so call this endpoint over and over when you want more. Each
        call should return new-ish results, but expect some duplicates because
        that is how Instagram's reels page behaves too. Returns `reels`, an
        array of reel objects with shortcode, URL, caption, media URLs,
        engagement counts when Instagram exposes them, and user info.
      operationId: get_instagram-reels-trending
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example:
                success: true
                credits_remaining: 100
                data:
                  reels:
                    - id: '3659267353687104516'
                      pk: '3659267353687104516'
                      shortcode: DYt13O8gLoE
                      url: https://www.instagram.com/reel/DYt13O8gLoE/
                      caption: Funny clip from today
                      taken_at: '2026-01-02T18:32:11.000Z'
                      media_type: 2
                      product_type: clips
                      video_url: >-
                        https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4
                      video_versions:
                        - type: 101
                          width: 720
                          height: 1280
                          url: >-
                            https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4
                      image_url: >-
                        https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg
                      image_versions2:
                        candidates:
                          - width: 720
                            height: 1280
                            url: >-
                              https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg
                      original_width: 720
                      original_height: 1280
                      has_audio: true
                      like_count: 12345
                      comment_count: 123
                      play_count: 456789
                      ig_play_count: 456789
                      clips_metadata: {}
                      user:
                        id: '123456789'
                        pk: '123456789'
                        username: creator
                        full_name: Creator
                        profile_pic_url: >-
                          https://scontent.cdninstagram.com/v/t51.2885-19/example.jpg
                        is_verified: true
                        is_private: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````