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

# List edges

> Returns a paginated list of edges across the tenant, optionally filtered by edge type. Use for taxonomy-style traversals — every reply, every annotation, every parent-of edge — without having to walk items first. Pass `edge_type` as a comma-separated list (up to 10 entries) to scope; omit to list every edge. Tenant-scoped.



## OpenAPI

````yaml /openapi.json get /edges
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /edges:
    get:
      tags:
        - Edges
      summary: List edges
      description: >-
        Returns a paginated list of edges across the tenant, optionally filtered
        by edge type. Use for taxonomy-style traversals — every reply, every
        annotation, every parent-of edge — without having to walk items first.
        Pass `edge_type` as a comma-separated list (up to 10 entries) to scope;
        omit to list every edge. Tenant-scoped.
      parameters:
        - schema:
            type: string
            description: >-
              Comma-separated edge types. Up to 10 entries. Omit to list every
              edge.
          required: false
          description: >-
            Comma-separated edge types. Up to 10 entries. Omit to list every
            edge.
          name: edge_type
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 500
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: cursor
          in: query
      responses:
        '200':
          description: Edges, paginated
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        tenant_id:
                          type: string
                          nullable: true
                        source_id:
                          type: string
                        target_id:
                          type: string
                        edge_type:
                          type: string
                        properties:
                          type: object
                          additionalProperties:
                            nullable: true
                        created_at:
                          type: string
                        updated_at:
                          type: string
                      required:
                        - id
                        - source_id
                        - target_id
                        - edge_type
                        - properties
                        - created_at
                        - updated_at
                  cursor:
                    type: string
                    nullable: true
                  has_more:
                    type: boolean
                required:
                  - data
                  - cursor
                  - has_more
        '400':
          description: Validation error (e.g. too many edge types in filter)
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - validation_error
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - unauthorized
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or OAuth Token
      description: Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

````