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

# Media by explore section ID

> Retrieve media content from a specific explore section.



## OpenAPI

````yaml /openapi/instagram.openapi.json get /v1/data/instagram/section
openapi: 3.0.0
info:
  title: agntdata Instagram API
  description: >-
    Access Real-Time Instagram Data Effortlessly! Rely on Smart Request
    Filtering to Secure a 99.99% Success Guarantee.
  version: 1.0.0
  contact:
    name: agntdata
    url: https://agntdata.dev
servers:
  - url: https://api.agntdata.dev
    description: agntdata API
security:
  - ApiKeyAuth: []
tags:
  - name: 🌐 Global Search
    description: ''
  - name: 🗺️ Location Data
    description: ''
  - name: 🔖 Hashtag Lookup
    description: ''
  - name: 👤 User Insights
    description: ''
  - name: 🧩 Identity Utilities
    description: ''
  - name: 📸 Media Details
    description: ''
  - name: 🔍 Explore Feed
    description: ''
paths:
  /v1/data/instagram/section:
    get:
      tags:
        - 🔍 Explore Feed
      summary: Media by explore section ID
      description: Retrieve media content from a specific explore section.
      operationId: Media_by_explore_section_ID
      parameters:
        - name: fields
          in: query
          required: false
          schema:
            type: string
          description: >-
            Use the `fields` parameter to reduce bandwidth consumption and
            minimize response size by returning only the necessary data.
        - name: max_id
          in: query
          required: false
          schema:
            type: number
        - name: count
          in: query
          required: true
          schema:
            type: number
            default: '20'
        - name: id
          in: query
          required: true
          schema:
            type: string
            default: '10156104417160727'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Get_instagram_section_Response'
        '400':
          description: Bad request
        '401':
          description: Unauthorized - invalid API key
        '429':
          description: Rate limit exceeded
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Get_instagram_section_Response:
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Bearer token. Pass your agntdata API key as: Authorization: Bearer
        agnt_live_...

````