> ## 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 push device

> Get a registered device.



## OpenAPI

````yaml /en/push-api/api-reference/openapi-push.json get /v1/push/devices/{id}
openapi: 3.0.3
info:
  title: Notifique API Push
  description: >-
    Send push notifications and manage apps and devices. Authenticate with
    `Authorization: Bearer sk_live_...` or `x-api-key`.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Production
security:
  - ntfPushBearerAuth: []
  - ntfPushApiKeyHeader: []
tags:
  - name: Push Apps
    description: >-
      CRUD de aplicações de push (um app por produto; credenciais
      Web/Android/iOS por app)
  - name: Push Devices
    description: Registro e listagem de dispositivos/subscriptions
  - name: Push Messages
    description: Envio, consulta e cancelamento de notificações push
paths:
  /v1/push/devices/{id}:
    get:
      tags:
        - Push Devices
      summary: Get push device
      description: Get a registered device.
      operationId: ntfPush_getV1PushDevicesById
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Dados do dispositivo.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfPush_PushDeviceSingleResponse'
        '401':
          description: Missing or invalid API Key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfPush_ErrorResponse'
        '403':
          description: Escopo insuficiente.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfPush_ErrorResponse'
        '404':
          description: Dispositivo não encontrado.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfPush_ErrorResponse'
components:
  schemas:
    NtfPush_PushDeviceSingleResponse:
      type: object
      required:
        - success
        - data
      properties:
        success:
          type: boolean
          example: true
        data:
          $ref: '#/components/schemas/NtfPush_PushDeviceItem'
    NtfPush_ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          description: 'Rótulo HTTP do erro (ex.: Unauthorized, Bad Request, Not Found).'
        message:
          type: string
          description: >-
            Mensagem legível para exibir ao usuário (localizada via
            Accept-Language / x-locale quando aplicável).
        code:
          type: string
          description: >-
            Código estável da API v1 (enum). Sempre presente em erros. Use com o
            status HTTP para decidir retry ou correção. Ver [Respostas de
            erro](/guides/conceitos/resposta-de-erros).
        details:
          type: object
      required:
        - success
        - error
        - message
        - code
    NtfPush_PushDeviceItem:
      type: object
      properties:
        id:
          type: string
        appId:
          type: string
        platform:
          type: string
        externalUserId:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    ntfPushBearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'Authorization: Bearer sk_live_xxxxx'
    ntfPushApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: 'x-api-key: sk_live_xxxxx'

````