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

# Returns all chains.



## OpenAPI

````yaml openapi/store-v3.json GET /v3/Chains
openapi: 3.0.4
info:
  title: StoreApi - V3
  version: v3
servers:
  - url: https://{host}/store
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - oauth2: []
paths:
  /v3/Chains:
    get:
      tags:
        - Service2Service
      summary: Returns all chains.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ChainDto'
        '500':
          description: Internal Server Error
components:
  schemas:
    ChainDto:
      required:
        - id
        - logoUrl
        - name
      type: object
      properties:
        id:
          minLength: 1
          type: string
        name:
          minLength: 1
          type: string
        logoUrl:
          minLength: 1
          type: string
        logoAliasUrl:
          type: string
          nullable: true
        color:
          type: string
          nullable: true
        pinIconUrl:
          type: string
          nullable: true
        logoWhiteUrl:
          type: string
          nullable: true
        logoAssetId:
          type: string
          nullable: true
          deprecated: true
        logoAliasAssetId:
          type: string
          nullable: true
          deprecated: true
        pinIconAssetId:
          type: string
          nullable: true
          deprecated: true
        logoWhiteAssetId:
          type: string
          nullable: true
          deprecated: true
        displayOrder:
          type: integer
          format: int32
        logoAssetHash:
          type: string
          nullable: true
        isAvailableForStoreSelection:
          type: boolean
      additionalProperties: false
  securitySchemes:
    oauth2:
      type: apiKey
      name: Authorization
      in: header

````