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

# Get a signer with signer handle.

> Endpoint to get a signer.



## OpenAPI

````yaml /public/spi-v3.yaml get /v1/signer/{signerAddress}
openapi: 3.0.0
info:
  title: SPI documentation
  version: 2.0.0
  description: API documentation for TransfiYa SPI flow
servers: []
security: []
tags:
  - name: Signer
    description: Operations related to Signers (keys)
paths:
  /v1/signer/{signerAddress}:
    get:
      tags:
        - Signer
      summary: Get a signer with signer handle.
      description: Endpoint to get a signer.
      operationId: getSigner
      parameters:
        - in: path
          name: signerAddress
          schema:
            type: string
          required: true
          example: wYe6h63CNqoLxJet5jP1WWLhGi8D11ZGij
      responses:
        '200':
          description: Signer fetched successfully
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/SignerResponse'
                  - type: object
                    properties:
                      error:
                        type: object
                        properties:
                          code:
                            type: integer
                            example: 0
                          message:
                            type: string
                            example: Success
              examples:
                example1:
                  summary: Response
                  value:
                    signer_id: 0195b009-a139-7ff2-adac-15e3c3ecfc88
                    id: 0195b009-a139-7ff2-adac-15e3c3ecfc88
                    handle: wYe6h63CNqoLxJet5jP1WWLhGi8D11ZGij
                    keeper:
                      - public: >-
                          7ef44ee7ff1f4527ef44ee7ff1f4527ef44ee7ff1f4527ef44ee7ff1f4527ef4
                        scheme: ecdsa-ed25519
                        secret: >-
                          046d541aec939b4748943e49cc1117a70966a6fc87345e6052a54f1e69ea48d5
                    labels:
                      type: PERSON
                      status: INACTIVE
                      created: '2025-03-19T15:12:55.993-05:00'
                      updated: '2025-03-20T15:12:55.993-05:00'
                      createdBy: mSJkneiASd
                      aliasType: ALPHANUM
                      aliasValue: '@jorge'
                      proprietary: CC
                      identification: '1010101010'
                      firstName: Jorge
                      lastName: Diaz
                      bankId: '900123456'
                      bankAccountType: SVGS
                      bankAccountNumber: '4123456789'
                      routerReference: $bancorojo
                      targetSpbviCode: TFY
                      consented: '2025-03-13T20:38:07-05:00'
                      received: '2025-03-13T20:38:07.123-05:00'
                      dispatched: '2025-03-13T20:38:10.123-05:00'
                    error:
                      code: 0
                      message: Success
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
components:
  schemas:
    SignerResponse:
      type: object
      properties:
        id:
          type: string
        signer_id:
          type: string
        handle:
          type: string
        keeper:
          type: array
          items:
            type: object
            properties:
              private:
                type: string
              public:
                type: string
              scheme:
                type: string
        labels:
          type: object
          properties:
            type:
              type: string
            aliasType:
              type: string
            aliasValue:
              type: string
            status:
              type: string
            proprietary:
              type: string
            description:
              type: string
            identification:
              type: string
            name:
              type: string
            firstName:
              type: string
            secondName:
              type: string
            lastName:
              type: string
            secondLastName:
              type: string
            countryOfResidence:
              type: string
            bankAccountType:
              type: string
            bankAccountNumber:
              type: string
            bankBicfi:
              type: string
            bankName:
              type: string
            bankId:
              type: string
            createdBy:
              type: string
            routerReference:
              type: string
            targetSpbviCode:
              type: string
            consented:
              type: string
            received:
              type: string
            dispatched:
              type: string
            created:
              type: string
            updated:
              type: string
    ErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/GenericError'
    GenericError:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
        requestId:
          type: string

````