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

# Get Instagram instance

> Get details of a connected Instagram account.



## OpenAPI

````yaml /en/instagram-api/api-reference/openapi-instagram.json get /v1/instagram/instances/{instanceId}
openapi: 3.0.3
info:
  title: Notifique API — Instagram
  version: 1.0.0
  description: >-
    Send Instagram DMs and manage connections. Authenticate with `Authorization:
    Bearer sk_live_...` or `x-api-key`.
servers:
  - url: https://api.notifique.dev
    description: Production
security:
  - ntfIgBearerAuth: []
  - ntfIgApiKeyHeader: []
tags:
  - name: 'Instagram: instances'
    description: Criar, listar, desconectar e remover conexões Instagram.
  - name: 'Instagram: messages'
    description: Enviar, listar, editar, cancelar, apagar e inbound.
  - name: 'Instagram: comments'
    description: Listr, responder e moderar comentários.
paths:
  /v1/instagram/instances/{instanceId}:
    get:
      tags:
        - 'Instagram: instâncias'
      summary: Get Instagram instance
      description: Get details of a connected Instagram account.
      operationId: ntfIg_getInstance
      parameters:
        - name: instanceId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Detail da conexão, incluindo lock, cooldown, abuse pause e warm-up.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfIg_InstanceDetail'
              example:
                success: true
                data:
                  id: inst_abc
                  name: Instagram atendimento
                  status: ACTIVE
                  createdAt: '2026-07-20T12:00:00.000Z'
                  updatedAt: '2026-07-20T12:05:00.000Z'
                  username: seu_usuario
                  igUserPk: '17841'
                  expectedUsername: seu_usuario
                  lockedUsername: seu_usuario
                  lockedIgUserPk: '17841'
                  reconnectBlockedUntil: null
                  abusePausedUntil: null
                  firstConnectedAt: '2026-07-20T12:05:00.000Z'
                  warmup:
                    active: true
                    dailyLimit: 15
                    sentToday: 3
                    daysRemaining: 5
                  termsAcceptedAt: '2026-07-20T12:00:00.000Z'
                  termsVersion: v1
                  hasSession: true
        '403':
          description: Sem escopo ou instance não permitida.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfIg_ErrorResponse'
        '404':
          description: Instance not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfIg_ErrorResponse'
components:
  schemas:
    NtfIg_InstanceDetail:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
            status:
              type: string
            createdAt:
              type: string
              format: date-time
            updatedAt:
              type: string
              format: date-time
            username:
              type: string
              nullable: true
            igUserPk:
              type: string
              nullable: true
            expectedUsername:
              type: string
              nullable: true
              description: Username esperado informado na criação.
            lockedUsername:
              type: string
              nullable: true
              description: Username permanentemente vinculado após o primeiro login.
            lockedIgUserPk:
              type: string
              nullable: true
              description: igUserPk permanentemente vinculado após o primeiro login.
            reconnectBlockedUntil:
              type: string
              format: date-time
              nullable: true
              description: >-
                Até quando a reconexão fica bloqueada após desconexão
                involuntária.
            abusePausedUntil:
              type: string
              format: date-time
              nullable: true
              description: >-
                Até quando a conta fica pausada após sinal de abuso/rate-limit
                do Instagram.
            firstConnectedAt:
              type: string
              format: date-time
              nullable: true
              description: Data/hora da primeira conexão bem-sucedida (base do warm-up).
            warmup:
              $ref: '#/components/schemas/NtfIg_WarmupSnapshot'
            termsAcceptedAt:
              type: string
              format: date-time
              nullable: true
            termsVersion:
              type: string
              nullable: true
            hasSession:
              type: boolean
    NtfIg_ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
        message:
          type: string
        code:
          type: string
        details:
          type: object
          additionalProperties: true
        data:
          type: object
          additionalProperties: true
        retryAfterSec:
          type: integer
          description: >-
            Segundos até poder tentar de novo (presente em 429 de cooldown/abuse
            pause).
    NtfIg_WarmupSnapshot:
      type: object
      description: >-
        Estado do warm-up da instance (conexão unofficial AIOGRAPI, primeiros 5
        dias após firstConnectedAt).
      properties:
        active:
          type: boolean
          description: Se a instance está em warm-up.
        dailyLimit:
          type: integer
          description: Limite diário de DMs durante warm-up (15).
        sentToday:
          type: integer
          description: DMs já contabilizadas hoje (UTC).
        daysRemaining:
          type: integer
          description: Dias restantes na janela de warm-up.
  securitySchemes:
    ntfIgBearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'Authorization: Bearer sk_live_...'
    ntfIgApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````