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

# User Embed

> User Embed

Embed-style profile HTML and metadata for a handle.

## Example

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


## OpenAPI

````yaml openapi/instagram.json GET /instagram/user/embed
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/user/embed:
    get:
      tags:
        - Instagram API
      summary: User Embed
      description: >-
        Returns the raw HTML embed snippet for an Instagram user's profile
        widget. The response contains a single html string that can be inserted
        into a webpage to render an embeddable Instagram profile card. Requires
        the user's handle as input.
      operationId: get_instagram-user-embed
      parameters:
        - name: handle
          in: query
          required: true
          description: Instagram handle
          schema:
            type: string
          example: jane
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example:
                success: true
                html: |-
                  <!DOCTYPE html>
                  <html lang="en" id="facebook" class="no_js">
                  <head><meta charset="utf-8.....
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````