> ## 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 Chains

Returns only active chains with a deployed AKKA Router. Integrators should refresh this endpoint rather than treating documentation tables as a runtime registry.


## OpenAPI

````yaml GET /partner/v1/chains
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/chains:
    get:
      tags:
        - Partners
      summary: List active AKKA execution chains
      operationId: PartnerController_getChains
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PartnerChainDto'
components:
  schemas:
    PartnerChainDto:
      type: object
      properties:
        chainId:
          type: number
        name:
          type: string
        nativeSymbol:
          type: string
        nativeDecimals:
          type: number
        wrappedNative:
          type: object
          nullable: true
        routerAddress:
          type: string
        contractVersion:
          type: string
        operationalStatus:
          type: string
          enum:
            - ACTIVE
            - DEGRADED
            - DISABLED
        explorerUrl:
          type: object
          nullable: true
        routerCodeHash:
          type: object
          nullable: true
        deploymentBlock:
          type: object
          nullable: true
        deploymentTransactionHash:
          type: object
          nullable: true
        deployedAt:
          type: object
          nullable: true
        auditUrls:
          type: array
          items:
            type: string
      required:
        - chainId
        - name
        - nativeSymbol
        - nativeDecimals
        - wrappedNative
        - routerAddress
        - contractVersion
        - operationalStatus
        - explorerUrl
        - routerCodeHash
        - deploymentBlock
        - deploymentTransactionHash
        - deployedAt
        - auditUrls
  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

````