---
name: Tracxn
version: 1.0.0
description: "Tracxn Playground API provides access to startup and company data including funding rounds, acquisitions, investors, and sector classifications. Currently limited to Cybersecurity feed data for testing purposes."
homepage: https://platform.tracxn.com/api/2.2/playground
metadata: {"seren":{"category":"integration","publisher_slug":"tracxn","api_base":"https://api.serendb.com"}}
---

# Tracxn

Tracxn Playground API provides access to startup and company data including funding rounds, acquisitions, investors, and sector classifications. Currently limited to Cybersecurity feed data for testing purposes.

## API Endpoints

### POST `/companies/search`

Search companies by name

**Request Body:**

```json
{
  "filter": {
    "companyName": "string - Company name to search"
  }
}
```

**Example:**

```bash
curl -X POST https://api.serendb.com/publishers/tracxn/companies/search \
  -H "Authorization: Bearer $SEREN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### POST `/companies`

Get company details by ID or filters

**Request Body:**

```json
{
  "filter": {},
  "limit": "number - Max results (default 20)"
}
```

**Example:**

```bash
curl -X POST https://api.serendb.com/publishers/tracxn/companies \
  -H "Authorization: Bearer $SEREN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### POST `/fundingRounds`

Get funding rounds with filters

**Request Body:**

```json
{
  "filter": {},
  "limit": "number"
}
```

**Example:**

```bash
curl -X POST https://api.serendb.com/publishers/tracxn/fundingRounds \
  -H "Authorization: Bearer $SEREN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### POST `/investors`

Search investors

**Request Body:**

```json
{
  "filter": {},
  "limit": "number"
}
```

**Example:**

```bash
curl -X POST https://api.serendb.com/publishers/tracxn/investors \
  -H "Authorization: Bearer $SEREN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### POST `/acquisitions`

Get acquisitions data

**Request Body:**

```json
{
  "filter": {},
  "limit": "number"
}
```

**Example:**

```bash
curl -X POST https://api.serendb.com/publishers/tracxn/acquisitions \
  -H "Authorization: Bearer $SEREN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

## MCP Tools

This API publisher also supports MCP (Model Context Protocol) access. Each API endpoint is available as an MCP tool.

### Available Tools

- `post_companies_search`: Search companies by name
- `post_companies`: Get company details by ID or filters
- `post_fundingRounds`: Get funding rounds with filters
- `post_investors`: Search investors
- `post_acquisitions`: Get acquisitions data

### Introspection

```bash
# List tools
curl https://api.serendb.com/publishers/tracxn/_mcp/tools \
  -H "Authorization: Bearer $SEREN_API_KEY"

# Call a tool
curl -X POST https://api.serendb.com/publishers/tracxn/_mcp/tools/{tool_name} \
  -H "Authorization: Bearer $SEREN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"body": {"key": "value"}}'
```

## Pricing

**Pricing Model:** per_request

- Price per request: $0.15000000

**Minimum charge:** $0.00010000

---

## Need Help?

- Seren Docs: https://docs.serendb.com
- Publisher: Tracxn Playground API provides access to startup and company data including funding rounds, acquisitions, investors, and sector classifications. Currently limited to Cybersecurity feed data for testing purposes.
