> ## Documentation Index
> Fetch the complete documentation index at: https://developers.explorium.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# New partnership

## Description

A **New Partnership** event tracks when two or more companies form a strategic alliance. This data provides insights into business collaborations, market expansions, and competitive strategies.

**Important:** The **New Partnership** event retrieves only **recent partnership announcements** within the last quarter (`timestamp_from` should be set to the past 3 months). If no partnership was announced in this timeframe, no data will be available.

**For historical partnership records,** use the **Competitive Landscape Enrichment API**.

## Use cases:

* **Market Expansion Analysis**: Identify industries where strategic partnerships are forming.
* **Competitive Intelligence**: Track competitor alliances and collaborations.
* **Investment & Business Development**: Assess potential business opportunities through partnerships.
* **Supply Chain & Operations**: Understand key supplier-buyer relationships and ecosystem expansions.

## Data Schema

**Event Name: "new\_partnership" (Use this value in the event\_types parameter when querying this event.)**

| Signal                           | API Name                 | Description                                                              | Data Type |
| :------------------------------- | :----------------------- | :----------------------------------------------------------------------- | :-------- |
| Link to article                  | link                     | Link to article announcing the company's new partnership.                | url       |
| Name of partnering company       | partner\_company         | Name of the company's newly announced partner.                           | string    |
| Title of new partnership article | title                    | Title of published news report or article on company's new partnership.  | string    |
| Event time                       | event\_time              | The timestamp indicating when the event actually occurred                | datetime  |
| Partnership purpose              | purpose\_of\_partnership | Short description of the partnership's purpose.                          | string    |
| Snippet of article               | snippet                  | Snippet of the published article or report on company's new partnership. | string    |
| Event name                       | event\_name              | Name of the event related to company's new partnership.                  | string    |

## Query Example

```curl cURL theme={null}
curl -X POST \
  "https://api.explorium.ai/v1/businesses/events" \
  -H "API_KEY: your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "event_types": [
    "new_partnership"
  ],
  "business_ids": [
    "8adce3ca1cef0c986b22310e369a0793"
  ],
  "timestamp_from": "2025-01-01T10:03:03.050Z"
}'
```

## Best Practices

* **Filter by partner company (`partner_company`)** to analyze key collaborations.
* **Monitor partnership purposes (`purpose_of_partnership`)** to understand strategic goals.
* **Use timestamps (`partnership_date`)** to track recent and historical partnerships.

## Related Events

<Columns cols={2}>
  <Card icon="dollar-sign" horizontal title="New Funding Round" href="/reference/businesses/events/types/new-funding-round">
    Announcement of a new funding round
  </Card>

  <Card icon="chart-line" horizontal title="New Investment" href="/reference/businesses/events/types/new-investment">
    Announcement of a new investment
  </Card>

  <Card icon="award" horizontal title="Merger and Acquisitions" href="/reference/businesses/events/types/merger-and-acquisitions">
    Tracks major M\&A activity.
  </Card>
</Columns>
