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

# Media Transcript

> Media Transcript

Speech-to-text transcript of a reel or video post by URL.

## Example

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


## OpenAPI

````yaml openapi/instagram.json GET /instagram/media/transcript
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/media/transcript:
    get:
      tags:
        - Instagram API
      summary: Media Transcript
      description: >-
        Generates an AI-powered speech-to-text transcription for an Instagram
        video post or reel. The video must be under 2 minutes long. Returns a
        transcripts array with each item's shortcode and transcribed text;
        carousel posts produce one transcript per video slide. Expect 10-30
        second response times, and null when no speech is detected.
      operationId: get_instagram-media-transcript
      parameters:
        - name: url
          in: query
          required: true
          description: Instagram post or reel URL
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example:
                success: true
                transcripts:
                  - id: '3597267389859272809'
                    shortcode: DHsD6HGqJhp
                    text: >-
                      Let's fry up the perfect bunzel. Beautiful.  Everybody,
                      shh. The perfect bunzel. Let me show you my bunzel. When
                      it comes down to bunzel, we make it the crispiest, get the
                      crunch. Heaven.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````