# Eu Startups — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access the EU-Startups investor database, startup directory, job board, and news articles. Search and filter investors by type and country, browse startups, and retrieve detailed profiles.

**Category:** Business Directories | **Website:** [eu-startups.com/](https://eu-startups.com/) | **Docs:** [parse.bot/marketplace/437f112d-ed2c-4816-a48e-0895cfad2ea9/eu-startups-com-api](https://parse.bot/marketplace/437f112d-ed2c-4816-a48e-0895cfad2ea9/eu-startups-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-eu-startups-com-api-437f112d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_investor_detail

Get detailed information about a specific investor including type, location, investment areas, typical investment size, funding stage, and contact details. Requires a slug obtainable from list_investors or search_investors results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The investor slug from the investor URL path (obtainable from list_investors or search_investors results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eu-startups-com-api-437f112d/get_investor_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_startup_detail

Get detailed information about a specific startup including description, location, category, founding year, and website. Returns stale_input if the startup slug no longer exists.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The startup slug from the directory URL path (obtainable from list_startups results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eu-startups-com-api-437f112d/get_startup_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_articles

List latest news articles from EU-Startups using the WordPress REST API. Returns articles with title, URL, date, and slug. Supports pagination and configurable page size.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of articles per page (max 100). |
| `page` | integer | No | Page number to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eu-startups-com-api-437f112d/list_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>"}'
```

### list_investors

List investors from the EU-Startups Investor Database. Returns a paginated list of investor summaries with name, URL, and slug. Each page contains approximately 11 investors. Use the slug to fetch full investor details via get_investor_detail.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eu-startups-com-api-437f112d/list_investors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### list_jobs

List current job openings from the EU-Startups Job Board. Returns all jobs in a single response without pagination.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eu-startups-com-api-437f112d/list_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_startups

List startups from the EU-Startups Startup Directory. Returns a paginated list of startup summaries with name, URL, and slug. Use the slug to fetch full startup details via get_startup_detail.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eu-startups-com-api-437f112d/list_startups \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### search_investors

Search for investors in the EU-Startups database with optional filters for keyword, type, and country. Returns matching investor summaries. All filters are optional; omitting all returns the default unfiltered listing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | 2-letter country code to filter by headquarters location (e.g. DE, FR, GB). |
| `query` | string | No | Search keyword to match investor names. |
| `type` | string | No | Investor type filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eu-startups-com-api-437f112d/search_investors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","query":"<string>","type":"<string>"}'
```
