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

# Get organization public profiles

> Returns public profile data for organizations by organization IDs. Maximum 1000 organization IDs per request. This endpoint returns only publicly visible information.



## OpenAPI

````yaml api-reference/profiles.yaml post /organizations/public-profiles
openapi: 3.0.3
info:
  title: profiles
  description: >-
    The Profiles service stores basic info like names and details for all users,
    organizations, and service accounts. It's where you go to look up account
    info, and it's kept separate from the Auth Service so it can handle a lot of
    traffic without slowing things down.
  version: 1.0.0
servers:
  - url: https://profiles.platform.arb.inc
security: []
tags:
  - name: /
  - name: internal
  - name: organizations
  - name: users
paths:
  /organizations/public-profiles:
    post:
      tags:
        - organizations
      summary: Get organization public profiles
      description: >-
        Returns public profile data for organizations by organization IDs.
        Maximum 1000 organization IDs per request. This endpoint returns only
        publicly visible information.
      operationId: getOrganizationProfiles
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                organizationIDs:
                  type: array
                  description: >-
                    List of organization IDs to retrieve profiles for (maximum
                    1000)
                  items:
                    type: string
                    format: uuid
                  example:
                    - 3a5b7c9d-2e4f-6a8b-9c0d-1e2f3a4b5c6d
                    - 7e9f1a2b-3c4d-5e6f-7a8b-9c0d1e2f3a4b
      responses:
        '200':
          description: Organization profiles retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  profiles:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Unique identifier for the organization
                          example: 3a5b7c9d-2e4f-6a8b-9c0d-1e2f3a4b5c6d
                        name:
                          type: string
                          description: Organization name
                          example: Acme Corporation
        '403':
          description: Insufficient permissions to access organization profiles
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````