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

# Lista los contactos del workspace (IOU-005)



## OpenAPI

````yaml /openapi/v1.json get /v1/contacts
openapi: 3.0.0
info:
  title: Finzaria API
  description: >-
    API REST de Finzaria — finanzas personales para México, dev-first y
    agent-first. Autentícate con tu API key bxm_ (o un token OAuth).
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.finzaria.com/v1
    description: Producción
security: []
tags: []
paths:
  /v1/contacts:
    get:
      tags:
        - iou
      summary: Lista los contactos del workspace (IOU-005)
      operationId: ContactsController_list
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ContactDto'
      security:
        - bearer: []
components:
  schemas:
    ContactDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        email:
          type: string
          nullable: true
        archivedAt:
          type: string
          nullable: true
        createdAt:
          type: string
      required:
        - id
        - name
        - email
        - archivedAt
        - createdAt
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT (Supabase Auth)
      type: http

````