DocsCore Conceptsflows

Understanding Flows

In RelayCraft, a Flow represents a single HTTP/HTTPS interaction, consisting of a Request and a Response.

Anatomy of a Flow

Each flow contains detailed information captured from the network:

  • Request: Method, URL, Headers, Body (JSON, Form, Text, etc.)
  • Response: Status Code, Headers, Body, Timing info
  • Metadata: Client IP, Server IP, Duration, Protocol (HTTP/1.1, HTTP/2)

Filtering Flows

The search bar supports advanced filtering expressions. You can filter by domain, method, status code, and content.

# Filter by domain
~d google.com

# Filter by method POST
~m POST

# Filter by status code 404
~c 404

# Filter by body content
~b "error"