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

# Describe Own Identity

> What this device is enrolled as — one row, its own.

The third route on this surface, and narrower than `GET /fleet/devices`
which it sits beside: that returns the organization's inventory, this
returns the calling device and names no other. It answers "which account
and which organization am I signed in to?" at any time, rather than only in
the enrollment response the agent saw once — and answers *unverified* when
the device carries an attribution label instead of a bound account.



## OpenAPI

````yaml /api-reference/openapi-developer.json get /api/v1/fleet/identity
openapi: 3.1.0
info:
  title: PromptGuard Developer API
  description: >-
    Public API for developers to integrate PromptGuard security into their
    applications
  version: 1.0.0
servers:
  - url: https://api.promptguard.co
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /api/v1/fleet/identity:
    get:
      tags:
        - fleet-device
      summary: Describe Own Identity
      description: >-
        What this device is enrolled as — one row, its own.


        The third route on this surface, and narrower than `GET /fleet/devices`

        which it sits beside: that returns the organization's inventory, this

        returns the calling device and names no other. It answers "which account

        and which organization am I signed in to?" at any time, rather than only
        in

        the enrollment response the agent saw once — and answers *unverified*
        when

        the device carries an attribution label instead of a bound account.
      operationId: describe_own_identity_api_v1_fleet_identity_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        PromptGuard API key for developer endpoints. Keys start with pg_live_
        and are created in the dashboard.

````