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

# List all organizations (super admins only)

> Returns 404 unless the authenticated user is on the super admin allowlist.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/superadmin/organizations
openapi: 3.0.0
info:
  title: Hyperprop Platform API
  version: 1.0.0
  description: >-
    REST API for the Hyperprop Trading Platform — provision evaluation and
    funded trading accounts, manage traders and plans, react to account
    lifecycle events via signed webhooks, and reconcile billing. Built for prop
    firms integrating from their own backend.


    Authentication, quick start, error handling, idempotency, pagination, custom
    metadata, webhooks, and the MCP connector are documented at
    https://docs.hyperprop.com.
  x-logo:
    url: https://app.hyperprop.com/logo-icon.svg
    altText: Hyperprop
    href: https://hyperprop.com
servers:
  - url: https://api.hyperprop.com/platform
    description: Production
security: []
tags:
  - name: Authentication
    description: >-
      User authentication - signup, signin, signout, password reset, email
      verification, OAuth, and MFA
  - name: User
    description: >-
      User account management - profile, notifications, agreements, dismissals,
      and audit logs. Requires Bearer token.
  - name: Organization
    description: >-
      Organization management - profile, team, trading accounts, plans, and
      rules. Supports **dual authentication**: Bearer JWT token (dashboard
      users) OR X-API-Key (programmatic access).
  - name: Demo
    description: >-
      Demo account management - import, list, and delete demo trading accounts.
      Requires Bearer token.
  - name: Market Data
    description: CME futures contracts and market data. Requires Bearer token.
  - name: System
    description: System endpoints - health checks and connectivity
paths:
  /v1/superadmin/organizations:
    get:
      summary: List all organizations (super admins only)
      description: >-
        Returns 404 unless the authenticated user is on the super admin
        allowlist.
      operationId: getV1SuperadminOrganizations
      responses:
        default:
          description: Successful
          content:
            '*/*':
              schema:
                type: string

````

## Related topics

- [List all active lockouts](/platform-api/organization/list-all-active-lockouts.md)
- [List all organization events](/platform-api/organization/list-all-organization-events.md)
- [List API keys](/platform-api/organization/list-api-keys.md)
- [Get team members for your organization](/platform-api/organization/get-team-members-for-your-organization.md)
- [Get organization audit log](/platform-api/organization/get-organization-audit-log.md)
