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

# List parties



## OpenAPI

````yaml /reference/openapi.yaml get /parties
openapi: 3.1.0
info:
  title: Finpace Core and AI Runtime API
  version: 1.0.0
  description: >-
    Core platform API for Finpace Halcyon covering customer, product, account,
    payment, lending, workflow, interaction, notification, and governed AI
    runtime capabilities.
servers:
  - url: https://api.finpace.tech
    description: Illustrative production endpoint
security:
  - bearerAuth: []
tags:
  - name: Parties
  - name: Customers
  - name: Agreements
  - name: Entitlements
  - name: Products
  - name: Pricing
  - name: Campaigns
  - name: Channels
  - name: Interactions
  - name: Accounts
  - name: Balances
  - name: Payments
  - name: Liquidity
  - name: Lending
  - name: Collateral
  - name: Cases
  - name: Documents
  - name: Notifications
  - name: AI Runtime
  - name: Events
  - name: Operations
paths:
  /parties:
    get:
      tags:
        - Parties
      summary: List parties
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Party'
components:
  schemas:
    Party:
      type: object
      properties:
        partyId:
          type: string
          example: pty_01J8YF6A
        partyType:
          type: string
          enum:
            - natural_person
            - legal_entity
        displayName:
          type: string
        jurisdiction:
          type: string
          example: AT
        status:
          type: string
          example: active
      required:
        - partyId
        - partyType
        - displayName
        - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````