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

# Get Info (whoami)

> Retrieve information about the authenticated user/organization



## OpenAPI

````yaml api-reference/openapi.json get /api/org/info
openapi: 3.0.3
info:
  title: Dvuln Organisation API
  description: API for managing projects, issues, and comments in Dvuln platform
  version: 1.0.0
servers:
  - url: https://{host}
    description: Dvuln API Server
    variables:
      host:
        default: console.dvuln.com
        description: The API host domain
security:
  - ApiKeyAuth: []
paths:
  /api/org/info:
    get:
      summary: Get Info (whoami)
      description: Retrieve information about the authenticated user/organization
      operationId: getInfo
      responses:
        '200':
          description: Successful response with user/organization information
          content:
            application/json:
              schema:
                type: object
                properties:
                  orgName:
                    type: string
                    description: The name of the organization
                    example: Example Corporation Pty. Ltd.
        '403':
          description: Forbidden - Invalid or missing API key
        '500':
          description: Internal server error
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Token
      description: API key for authentication

````