# Edges — Orthogonal API

> Pay-per-use API on Orthogonal. Each call is billed to your Orthogonal balance.
> Base API: `https://api.orth.sh/v1/run` · [llms.txt](https://orthogonal.com/llms.txt) · [browse all APIs](https://orthogonal.com/discover)

Edges provides LinkedIn automation actions for data extraction, search, and discovery. Extract profiles, companies, posts, jobs, events, and more. Search across LinkedIn and Sales Navigator.

**Verified:** yes

## Access

**Run API:** `POST https://api.orth.sh/v1/run`
**Auth:** `Authorization: Bearer $ORTHOGONAL_API_KEY`
Get an API key at https://orthogonal.com/dashboard/settings/api-keys

Every call goes through the unified Run API: send the API `slug`, the endpoint `path`, and the `query`/`body` parameters. The response is `{ "success": true, "price": "<usd>", "data": { ... } }`.

## Endpoints

### Salesnav Search Company Employees

Search for leads within a specific company using Sales Navigator filters.

`POST /actions/salesnavigator-search-company-employees/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_company_url (required, string): Sales Navigator company page URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-search-company-employees/run/live","body":{"input":"<object>"}}'
```

### Salesnav Extract Accounts List

Extract accounts (companies) from a saved accounts list in Sales Navigator.

`POST /actions/salesnavigator-extract-accounts-list/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_company_list_url (required, string): Sales Navigator saved accounts list URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-extract-accounts-list/run/live","body":{"input":"<object>"}}'
```

### Linkedin Find Company Url

Use AI to find a LinkedIn company page URL from a company name or domain.

`POST /actions/linkedin-find-company-url/run/live`

**Estimated cost:** $0.06

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: domain (required, string): Company domain (e.g., microsoft.com) |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-find-company-url/run/live","body":{"input":"<object>"}}'
```

### Linkedin Search Content

Search for posts and articles on LinkedIn using keywords and filters.

`POST /actions/linkedin-search-content/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_content_search_url (required, string): LinkedIn Content search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-search-content/run/live","body":{"input":"<object>"}}'
```

### Linkedin Search Schools

Search for schools and universities on LinkedIn using keywords and filters.

`POST /actions/linkedin-search-schools/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_school_search_url (required, string): LinkedIn School search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-search-schools/run/live","body":{"input":"<object>"}}'
```

### Salesnav Extract Employees Count

Extract employee count statistics from a company's Sales Navigator account page.

`POST /actions/salesnavigator-extract-employees-count/run/live`

**Estimated cost:** $0.18

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_company_url (required, string): Sales Navigator company page URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-extract-employees-count/run/live","body":{"input":"<object>"}}'
```

### Salesnav Search Company Metrics

Get total result count metrics for a Sales Navigator company search URL.

`POST /actions/salesnavigator-search-company-metrics/run/live`

**Estimated cost:** $0.18

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_company_search_url (required, string): Sales Navigator company search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-search-company-metrics/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Similar Companies

Extract a list of companies similar to a given LinkedIn company page, based on LinkedIn's recommendations.

`POST /actions/linkedin-extract-similar-companies/run/live`

**Estimated cost:** $0.18

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_company_url (required, string): LinkedIn Company URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-similar-companies/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract People Educations

Extract education history from LinkedIn profiles including schools, degrees, fields of study, and dates.

`POST /actions/linkedin-extract-people-educations/run/live`

**Estimated cost:** $0.35

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_profile_url (required, string): LinkedIn Profile URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-people-educations/run/live","body":{"input":"<object>"}}'
```

### Linkedin Find Profile Url

Use AI to find a LinkedIn profile URL from a person's name and optional contextual information.

`POST /actions/linkedin-find-profile-url/run/live`

**Estimated cost:** $0.06

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters object containing full_name (required), company_name, domain, job_title |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-find-profile-url/run/live","body":{"input":"<object>"}}'
```

### Salesnav Extract Leads List

Extract leads from a saved leads list in Sales Navigator.

`POST /actions/salesnavigator-extract-leads-list/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_profile_list_url (required): Sales Navigator saved leads list URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-extract-leads-list/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Post Likers

Extract users who liked a specific LinkedIn post. Returns profile information of people who have reacted to the post.

`POST /actions/linkedin-extract-post-likers/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_post_url (required, string): LinkedIn Post URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-post-likers/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Post Commenters

Extract users who commented on a specific LinkedIn post with their profile information and comments.

`POST /actions/linkedin-extract-post-commenters/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_post_url (required): LinkedIn Post URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-post-commenters/run/live","body":{"input":"<object>"}}'
```

### Linkedin Search Events

Search for events on LinkedIn using keywords, date, and location filters.

`POST /actions/linkedin-search-events/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_event_search_url (required): LinkedIn Event search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-search-events/run/live","body":{"input":"<object>"}}'
```

### Linkedin Peopleid From Salesnavigatorid

Convert a Sales Navigator lead ID to a LinkedIn people ID for profile enrichment.

`POST /actions/linkedin-peopleid-from-salesnavigatorid/run/live`

**Estimated cost:** $0.06

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_profile_id (required): Sales Navigator lead ID |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-peopleid-from-salesnavigatorid/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract People Post Activity

Extract the post activity history of a LinkedIn profile, showing content they have published.

`POST /actions/linkedin-extract-people-post-activity/run/live`

**Estimated cost:** $0.09

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_profile_url (required): LinkedIn Profile URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-people-post-activity/run/live","body":{"input":"<object>"}}'
```

### Linkedin Search Companies

Search for companies on LinkedIn using filters like industry, size, location, and keywords.

`POST /actions/linkedin-search-companies/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_company_search_url (required): LinkedIn Company search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-search-companies/run/live","body":{"input":"<object>"}}'
```

### Linkedin Search Groups

Search for groups on LinkedIn using keywords and filters.

`POST /actions/linkedin-search-groups/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_group_search_url (required, string): LinkedIn Group search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-search-groups/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract People Reaction Activity

Extract the reaction activity history of a LinkedIn profile, showing posts they have liked or reacted to.

`POST /actions/linkedin-extract-people-reaction-activity/run/live`

**Estimated cost:** $0.09

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_profile_url (required, string): LinkedIn Profile URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-people-reaction-activity/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Company Affiliates

Extract the list of affiliated companies (subsidiaries, parent companies) linked to a LinkedIn company page.

`POST /actions/linkedin-extract-company-affiliates/run/live`

**Estimated cost:** $0.18

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_company_url (required, string): LinkedIn Company URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-company-affiliates/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Event

Extract detailed information from a LinkedIn event including title, description, date, location, and organizer.

`POST /actions/linkedin-extract-event/run/live`

**Estimated cost:** $0.09

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_event_url (required, string): LinkedIn Event URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-event/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Job

Extract detailed information from a LinkedIn job posting including title, company, description, requirements, and application details.

`POST /actions/linkedin-extract-job/run/live`

**Estimated cost:** $0.09

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_job_url (required, string): LinkedIn Job URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-job/run/live","body":{"input":"<object>"}}'
```

### Linkedin Search Jobs

Search for job postings on LinkedIn using keywords, location, company, and other filters.

`POST /actions/linkedin-search-jobs/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_job_search_url (required): LinkedIn Job search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-search-jobs/run/live","body":{"input":"<object>"}}'
```

### Salesnav Extract Company

Extract full company data from a Sales Navigator company page, including revenue, description, employee counts, and other profile metadata.

`POST /actions/salesnavigator-extract-company/run/live`

**Estimated cost:** $0.18

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_company_url (required): Sales Navigator company page URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-extract-company/run/live","body":{"input":"<object>"}}'
```

### Salesnav Extract Employees Distribution

Extract employee distribution data (by department, seniority, location) from a Sales Navigator company page.

`POST /actions/salesnavigator-extract-employees-distribution/run/live`

**Estimated cost:** $0.18

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_company_url (required): Sales Navigator company page URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-extract-employees-distribution/run/live","body":{"input":"<object>"}}'
```

### Salesnav Search Companies

Search for accounts (companies) on Sales Navigator using advanced filters.

`POST /actions/salesnavigator-search-companies/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_company_search_url (required): Sales Navigator company search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-search-companies/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract People

Extract detailed profile information from LinkedIn people including name, headline, experience, education, and skills.

`POST /actions/linkedin-extract-people/run/live`

**Estimated cost:** $0.09

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_profile_url (required, string): LinkedIn Profile URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-people/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract People Skills

Extract the skills listed on a LinkedIn profile including skill names and endorsement counts.

`POST /actions/linkedin-extract-people-skills/run/live`

**Estimated cost:** $0.35

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_profile_url (required, string): LinkedIn Profile URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-people-skills/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Post Reposters

Extract users who reposted a specific LinkedIn post with their profile information.

`POST /actions/linkedin-extract-post-reposters/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_post_url (required, string): LinkedIn Post URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-post-reposters/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Event Attendees

Extract the list of attendees registered for a LinkedIn event.

`POST /actions/linkedin-extract-event-attendees/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_event_url (required, string): LinkedIn Event URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-event-attendees/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Group Members

Extract the list of members from a LinkedIn group you belong to.

`POST /actions/linkedin-extract-group-members/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_group_url (required, string): LinkedIn Group URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-group-members/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Licenses Certifications

Extract licenses and certifications from a LinkedIn profile including credential name, issuing organization, and dates.

`POST /actions/linkedin-extract-licenses-certifications/run/live`

**Estimated cost:** $0.35

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_profile_url (required, string): LinkedIn Profile URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-licenses-certifications/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract People Experiences

Extract detailed work experience history from LinkedIn profiles including job titles, companies, dates, and descriptions.

`POST /actions/linkedin-extract-people-experiences/run/live`

**Estimated cost:** $0.35

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_profile_url (required): LinkedIn Profile URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-people-experiences/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Company Employees Insights

Extract employee insights and analytics from a LinkedIn company page, including headcount by function, location, and seniority.

`POST /actions/linkedin-extract-company-employees-insights/run/live`

**Estimated cost:** $0.18

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_company_url (required, string): LinkedIn Company URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-company-employees-insights/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract People Comment Activity

Extract the comment activity history of a LinkedIn profile, showing posts they have commented on.

`POST /actions/linkedin-extract-people-comment-activity/run/live`

**Estimated cost:** $0.09

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_profile_url (required): LinkedIn Profile URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-people-comment-activity/run/live","body":{"input":"<object>"}}'
```

### Linkedin Search Company Employees

Search for employees of a specific company on LinkedIn with optional filters.

`POST /actions/linkedin-search-company-employees/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_company_url (required): LinkedIn Company URL; linkedin_company_id: LinkedIn company ID |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-search-company-employees/run/live","body":{"input":"<object>"}}'
```

### Linkedin Search People

Search for people on LinkedIn using filters like title, company, location, and keywords.

`POST /actions/linkedin-search-people/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_people_search_url (required): LinkedIn People search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-search-people/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Company

Extract detailed information from a LinkedIn company page including name, description, industry, employee count, and more.

`POST /actions/linkedin-extract-company/run/live`

**Estimated cost:** $0.18

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_company_url (required, string): LinkedIn Company URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-company/run/live","body":{"input":"<object>"}}'
```

### Salesnav Search Metrics

Get metrics and statistics for a Sales Navigator search query, including total results count.

`POST /actions/salesnavigator-search-metrics/run/live`

**Estimated cost:** $0.18

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_company_id (required): Sales Navigator company ID |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-search-metrics/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract Post

Extract detailed information from a LinkedIn post including content, author, engagement metrics, and media.

`POST /actions/linkedin-extract-post/run/live`

**Estimated cost:** $0.09

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_post_url (required, string): LinkedIn Post URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-post/run/live","body":{"input":"<object>"}}'
```

### Linkedin Extract School Alumnis

Extract the list of alumni from a LinkedIn school page with their profile information.

`POST /actions/linkedin-extract-school-alumnis/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: linkedin_school_url (required, string): LinkedIn School URL |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/linkedin-extract-school-alumnis/run/live","body":{"input":"<object>"}}'
```

### Salesnav Search People

Search for leads on Sales Navigator using advanced filters like title, company, geography, and more.

`POST /actions/salesnavigator-search-people/run/live`

**Estimated cost:** $0.88

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `input` | object | Yes | Input parameters: sales_navigator_profile_search_url (required): Sales Navigator people search URL from browser |

```bash
curl -X POST 'https://api.orth.sh/v1/run' \
  -H 'Authorization: Bearer $ORTHOGONAL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"api":"edges","path":"/actions/salesnavigator-search-people/run/live","body":{"input":"<object>"}}'
```

---

Full details and an interactive quickstart: https://orthogonal.com/discover/edges
