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

# Introduction

> Introduction to the Edges Flows API

## Welcome to Edges Flows API

Flows by Edges is a simplified workflow mode that allows you to execute predefined flow presets through our API. These flows combine a primary action with compatible enrichment features to help you extract and enrich data efficiently.

## What are Flows?

Flows are **preset workflows** that combine:

* A **primary action** (e.g., "Extract LinkedIn People")
* One or more **enrichment steps** (additional data extraction or enrichment features)

Unlike custom workflows, flows are predefined and cannot be edited or customized. This simplified approach ensures reliability and consistency across all users.

<Note>
  Flows presets are based on a first action and then compatible with one or multiple enrichment features (additional steps). If you need more flexibility or want to build custom workflows, refer to the [main Edges documentation](https://docs.edges.run/).
</Note>

## Available Flows

You can view and launch flows in two ways:

1. **Web UI**: Visit [flows.edges.run](https://flows.edges.run) to browse and launch flows visually
2. **API**: Use the Flows API endpoints documented in this section to programmatically execute flows

## Flow Presets

Flow presets are predefined combinations of actions and enrichment steps. Each preset is optimized for specific use cases:

**LinkedIn Flows**

* **Domain to Company**: Find LinkedIn company pages from domain names
* **Domain to Employees**: Find and enrich employees from company domains
* **Hiring Companies**: Find and enrich companies that are currently hiring
* **Page Followers**: Extract and enrich followers from LinkedIn company pages
* **People Enrich**: Enrich LinkedIn profiles with additional data
* **Post Commenters**: Extract and enrich users who commented on a post
* **Post Likers**: Extract and enrich users who liked a post

**Sales Navigator Flows**

* **Lead List Enrich**: Enrich leads from a Sales Navigator lead list
* **Search Employees**: Search for employees using Sales Navigator filters
* **Search People**: Search for LinkedIn profiles using Sales Navigator filters

<Warning>
  Flow presets cannot be edited or customized. If you need a flow preset that doesn't exist yet, contact support - we may be able to add new presets based on available actions.
</Warning>

## Authentication

All API endpoints require authentication using an API key. Include your API key in the `X-API-Key` header for all requests.

```json theme={null}
"security": [
  {
    "XApiKeyAuth": []
  }
]
```

To get your API key:

1. Log in to your Edges account
2. Navigate to Developer Settings
3. Copy your personal API key

Keep your API key secure—treat it like a password.

## Related Documentation

For everything else related to Edges, including:

* Core concepts
* Identity management
* Action details
* SDK setup
* Rate limits

Please refer to the [main Edges documentation](https://docs.edges.run/).
