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

# Get trending Reels

> Get Instagram's current Reels tab / trending Reels feed.



## OpenAPI

````yaml get /v1/instagram/trending-reels
openapi: 3.1.0
info:
  title: Scrapio
  version: 1.0.0
  description: >-
    Turn any URL into structured data. Fetch raw HTML, crawl sites, extract
    structured content, interact with dynamic pages, and search the web through
    one API.
  contact:
    name: Scrapio Support
    url: https://scrapio.dev
  license:
    name: Proprietary
servers:
  - url: https://api.scrapio.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: System
  - name: Fetch
  - name: Crawl
  - name: Map
  - name: Interact
  - name: Search
  - name: Google
  - name: Fast Search
  - name: Jobs
  - name: YouTube
  - name: Amazon
  - name: Walmart
  - name: Booking
  - name: Agoda
  - name: Airbnb
  - name: AutoTrader
  - name: ChatGPT
  - name: Perplexity
  - name: Gemini
  - name: Bing
  - name: Reddit
  - name: Instagram
  - name: Twitter
  - name: Facebook
  - name: Hacker News
  - name: GitHub
  - name: TikTok
  - name: Apple App Store
  - name: Target
  - name: Monitors
paths:
  /v1/instagram/trending-reels:
    get:
      tags:
        - Instagram
      summary: Get trending Reels
      description: >-
        Retrieves Instagram's current Reels tab / trending Reels feed. Takes no
        query parameters. Browser-driven (Patchright), since the real surface
        requires a `POST` against Instagram's GraphQL endpoint curl_cffi can't
        replicate. Typically 10-20s. Requires a Starter plan or higher.
      operationId: getInstagramTrendingReels
      parameters: []
      responses:
        '200':
          description: Currently trending Reels.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstagramTrendingReelsResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: Instagram dedicated endpoints require a Starter plan or higher.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Daily credit cap exceeded, or Instagram rate-limited the request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: >-
            Instagram trending reels did not return a result in time, or
            returned an unusable response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: >-
            Instagram trending reels is temporarily unavailable (browser
            automation backend unreachable).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: |-
            curl "https://api.scrapio.dev/v1/instagram/trending-reels" \
              -H "Authorization: Bearer $SCRAPIO_API_KEY"
components:
  schemas:
    InstagramTrendingReelsResponse:
      type: object
      properties:
        provider:
          type: string
          enum:
            - instagram
        request_id:
          type: string
        reels:
          type: array
          items:
            type: object
            properties:
              id:
                anyOf:
                  - type: string
                  - type: 'null'
              url:
                anyOf:
                  - type: string
                  - type: 'null'
              caption:
                anyOf:
                  - type: string
                  - type: 'null'
              created_at:
                anyOf:
                  - type: string
                  - type: 'null'
              thumbnail_url:
                anyOf:
                  - type: string
                  - type: 'null'
              video_url:
                anyOf:
                  - type: string
                  - type: 'null'
              author:
                type: object
                properties:
                  username:
                    anyOf:
                      - type: string
                      - type: 'null'
                  full_name:
                    anyOf:
                      - type: string
                      - type: 'null'
                  avatar_url:
                    anyOf:
                      - type: string
                      - type: 'null'
                required:
                  - username
                  - full_name
                  - avatar_url
                additionalProperties: false
              stats:
                type: object
                properties:
                  likes:
                    anyOf:
                      - type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      - type: 'null'
                  comments:
                    anyOf:
                      - type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      - type: 'null'
                  plays:
                    anyOf:
                      - type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      - type: 'null'
                required:
                  - likes
                  - comments
                  - plays
                additionalProperties: false
              audio:
                anyOf:
                  - type: object
                    properties:
                      id:
                        anyOf:
                          - type: string
                          - type: 'null'
                      title:
                        anyOf:
                          - type: string
                          - type: 'null'
                    required:
                      - id
                      - title
                    additionalProperties: false
                  - type: 'null'
            required:
              - id
              - url
              - caption
              - created_at
              - thumbnail_url
              - video_url
              - author
              - stats
              - audio
            additionalProperties: false
      required:
        - provider
        - request_id
        - reels
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        request_id:
          type: string
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
        diagnostics:
          type: object
          properties:
            outcome:
              type: string
              enum:
                - failed
            retryable:
              type: boolean
            blocked:
              type: boolean
            timed_out:
              type: boolean
          required:
            - outcome
            - retryable
          additionalProperties: false
      required:
        - request_id
        - error
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````