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

# List Own Org Devices

> Devices in this device's own organization.

Read-only, and field-redacted for a device caller — another machine's
attribution label is withheld. No organization parameter is accepted: the
scope is the calling device's own org, so there is nothing for a leaked key
to point somewhere else.



## OpenAPI

````yaml /api-reference/openapi-developer.json get /api/v1/fleet/devices
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/devices:
    get:
      tags:
        - fleet-device
      summary: List Own Org Devices
      description: >-
        Devices in this device's own organization.


        Read-only, and field-redacted for a device caller — another machine's

        attribution label is withheld. No organization parameter is accepted:
        the

        scope is the calling device's own org, so there is nothing for a leaked
        key

        to point somewhere else.
      operationId: list_own_org_devices_api_v1_fleet_devices_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.

````