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

# Get Instagram Info

## Overview

The "Get Instagram Info" endpoint allows users to retrieve stored Instagram credentials from their Toingg account, facilitating access to integration details.


## OpenAPI

````yaml GET /get_instagram_info
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /get_instagram_info:
    get:
      tags:
        - Instagram Integration
      summary: Get Instagram Info
      operationId: get_instagram_info_get_instagram_info_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - OAuth2PasswordBearer: []
components:
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````