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

# Get the current logged-in account



## OpenAPI

````yaml api-reference/api.json get /2025-04/account
openapi: 3.1.0
info:
  title: PullRule
  version: 0.0.1
servers:
  - url: https://pullrule.com/api
    description: Production
security:
  - http: []
tags:
  - name: Account
  - name: Members
  - name: Pull requests
  - name: Rules
  - name: Users
paths:
  /2025-04/account:
    get:
      tags:
        - Account
      summary: Get the current logged-in account
      operationId: v202504.current-account
      responses:
        '200':
          description: '`Organisation`'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Organisation'
                required:
                  - data
        '401':
          $ref: '#/components/responses/AuthenticationException'
components:
  schemas:
    Organisation:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the object.
        name:
          type: string
          description: The name of the organisation.
        profile_photo_url:
          type: string
          description: The profile photo URL of the organisation.
        created_at:
          type: integer
          description: >-
            Time at which the object was created. Measured in seconds since the
            Unix epoch.
      required:
        - id
        - name
        - profile_photo_url
        - created_at
      title: Organisation
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
  securitySchemes:
    http:
      type: http
      scheme: bearer

````