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

# List eligible distributions

> Returns active impact-pool distributions the organization is eligible to receive.



## OpenAPI

````yaml https://api.endaoment.org/oas-json get /v1/orgs/{id}/distributions
openapi: 3.0.0
info:
  title: Endaoment API
  description: >-
    The official Endaoment API endpoints. Dev (canary) = newest features;
    Staging (stable) = pre-production.
  version: 0.0.0-dev
  contact: {}
servers:
  - url: https://api.endaoment.org
    description: Production
security: []
tags:
  - name: Partner Endpoints
    description: Tech-platform partner server-to-server APIs
  - name: Authentication
    description: OAuth callers, API keys, and session verification
  - name: Funds
    description: Donor-advised fund lifecycle
  - name: Donations
    description: Donation pledges, supported assets, and impact totals
  - name: Portfolios
    description: Investment portfolio catalog
  - name: Nonprofit Organizations
    description: Nonprofit lookup, subprojects, and missing-org intake
  - name: Grant Transfers
    description: Grant and entity transfers
  - name: Collaboration
    description: Collaborator recommendations and fund collaboration
  - name: Activity
    description: Public and scoped activity feeds
paths:
  /v1/orgs/{id}/distributions:
    get:
      tags:
        - Nonprofit Organizations
      summary: List eligible distributions
      description: >-
        Returns active impact-pool distributions the organization is eligible to
        receive.
      operationId: OrgsController_findEligibleDistributions_v1
      parameters:
        - name: id
          required: true
          in: path
          description: Unique identifier of the organization.
          schema:
            format: uuid
            example: 123e4567-e89b-12d3-a456-426614174000
            type: string
      responses:
        '200':
          description: Eligible distributions for the organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EligibleDistributionsResponseDto'
        '404':
          description: Organization not found or hidden
components:
  schemas:
    EligibleDistributionsResponseDto:
      type: object
      properties:
        distributions:
          description: >-
            Distribution rounds and impact pools the organization is eligible
            for.
          type: array
          items:
            $ref: '#/components/schemas/EligibleDistributionsDto'
      required:
        - distributions
    EligibleDistributionsDto:
      type: object
      properties:
        eligibleForAmount:
          type: string
          description: >-
            Amount of USDC the organization is eligible to receive, in
            micro-units (1000000 = 1 USD).
          example: '1000000'
        distributionTimestampUtc:
          type: number
          description: >-
            Deprecated Unix timestamp in milliseconds for when the distribution
            starts. Use distributionTimestamp instead.
          example: 1716239024000
          deprecated: true
        distributionTimestamp:
          type: number
          description: Unix timestamp in seconds for when the distribution starts.
          example: 1716239024
        source:
          description: Impact pool responsible for the distribution.
          allOf:
            - $ref: '#/components/schemas/EligibleDistributionSourceDto'
      required:
        - eligibleForAmount
        - distributionTimestampUtc
        - distributionTimestamp
        - source
    EligibleDistributionSourceDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the impact pool fund.
          format: uuid
          example: 123e4567-e89b-12d3-a456-426614174000
        name:
          type: string
          description: Name of the impact pool fund.
          example: Community Impact Pool
      required:
        - id
        - name

````