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

# Partner Liquidity Sources

Returns protocol and pool-type coverage derived from currently active pools. Presence means the source is enabled on the chain; it does not guarantee a route for every token pair or amount.


## OpenAPI

````yaml GET /partner/v1/{chainId}/sources
openapi: 3.0.0
info:
  title: AKKA Finance Backend API
  description: >-
    Use the Partners endpoints for new integrations. Swap endpoints are
    maintained for the AKKA UI and internal compatibility.
  version: 1.0.0
  contact:
    name: AKKA Finance
    url: https://akka.finance
    email: support@akka.finance
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
  - url: https://api.akka.finance
    description: Production
security:
  - api-key: []
tags:
  - name: Partners
    description: >-
      Recommended external integration contract for discovery, executable
      quotes, and outcome reporting.
  - name: Tokens
    description: Token metadata used by partner integrations.
  - name: Health
    description: Service health and readiness.
externalDocs:
  description: AKKA API Documentation
  url: https://docs.akka.finance/
paths:
  /partner/v1/{chainId}/sources:
    get:
      tags:
        - Partners
      summary: List active liquidity sources on a chain
      operationId: PartnerController_getSources
      parameters:
        - name: chainId
          required: true
          in: path
          schema:
            example: 999
            type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PartnerSourceDto'
components:
  schemas:
    PartnerSourceDto:
      type: object
      properties:
        key:
          type: string
        name:
          type: string
        poolType:
          type: string
        activePoolCount:
          type: number
        status:
          type: string
          enum:
            - ACTIVE
            - DEGRADED
            - DISABLED
        capabilities:
          type: object
          required:
            - exactInput
            - nativeInput
            - nativeOutput
            - contractPayer
          properties:
            exactInput:
              type: boolean
            nativeInput:
              type: boolean
            nativeOutput:
              type: boolean
            contractPayer:
              type: boolean
      required:
        - key
        - name
        - poolType
        - activePoolCount
        - status
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: apikey
      description: >-
        API key. basic-test-key is a shared, rate-limited evaluation credential;
        use a dedicated key in production.
      x-default: basic-test-key

````