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

# List your flows

> **Beta.** The request and response shapes may still change.

List your flows.

Returns your flows, each with the recipes they reference.

A flow identifier is what your product sends as `flow_id` when it evaluates, so this listing is the map between the moments you guard and the scoring behind them.


## OpenAPI

````yaml get /v2/watch/management/flows
openapi: 3.1.0
info:
  title: Prelude API
  version: 2.0.0
  description: The Prelude API allows you to send messages to your users.
  contact:
    email: support@prelude.so
servers:
  - url: https://api.prelude.dev
    description: Production server
security:
  - apiToken: []
tags:
  - name: Notify
    description: Send transactional and marketing messages with compliance enforcement.
  - name: Transactional
    description: Send transactional messages (deprecated - use Notify API instead).
  - name: Verify
    description: Verify phone numbers.
  - name: Watch
    description: Evaluate email addresses and phone numbers for trustworthiness.
  - name: Lookup
    description: >-
      Retrieve detailed information about a phone number including carrier data,
      line type, and portability status.
paths:
  /v2/watch/management/flows:
    get:
      tags:
        - Watch
      summary: List flows
      description: |-
        **Beta.** The request and response shapes may still change.

        List your flows.
      operationId: listWatchFlows
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 200
            default: 50
          description: >-
            Maximum number of flows to return per page. A larger value is
            clamped to 200 rather than refused.
        - name: cursor
          in: query
          required: false
          schema:
            type: string
          description: Pagination cursor from the previous response.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WatchFlowListResponse'
        '400':
          description: KO
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    WatchFlowListResponse:
      type: object
      properties:
        flows:
          type: array
          items:
            $ref: '#/components/schemas/WatchFlow'
        next_cursor:
          type: string
          description: >-
            Pass this back as `cursor` for the next page. Absent on the last
            page.
          examples:
            - flo_01jc0t6fwwfgfsq1md24mhyztj
      required:
        - flows
    Error:
      type: object
      properties:
        code:
          type: string
          description: The error code.
          examples:
            - invalid_phone_number
        message:
          type: string
          examples:
            - >-
              The provided phone number is invalid. Provide a valid E.164 phone
              number.
          description: A human-readable message describing the error.
        type:
          type: string
          examples:
            - bad_request
          description: The error type.
        request_id:
          type: string
          examples:
            - 3d19215e-2991-4a05-a41a-527314e6ff6a
          description: >-
            A string that identifies this specific request. Report it back to us
            to help us diagnose your issues.
        param:
          type: string
          examples:
            - phone_number
          description: The parameter the error refers to, when it applies to a single one.
      required:
        - code
        - message
        - type
    WatchFlow:
      type: object
      properties:
        id:
          type: string
          examples:
            - flo_01jc0t6fwwfgfsq1md24mhyztj
          description: The flow identifier. Pass it as `flow_id` when you evaluate.
        name:
          type: string
          examples:
            - signup
        recipes:
          type: array
          items:
            type: string
          examples:
            - - rcp_01jc0t6fwwfgfsq1md24mhyztj
      required:
        - id
        - name
        - recipes
  securitySchemes:
    apiToken:
      type: http
      scheme: bearer

````