---
title: "Shared event property breakdown REST API | HitKeep"
description: "Reference for the HitKeep REST API operation Shared event property breakdown, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apisharetokensitesideventsbreakdown/"
---

# Shared event property breakdown REST API

GET

/api/share/{token}/sites/{id}/events/breakdown

FetchcURL

```
const url = 'http://127.0.0.1:25737/api/share/example/sites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/events/breakdown?event_name=example&property_key=example';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```
curl --request GET \
  --url 'http://127.0.0.1:25737/api/share/example/sites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/events/breakdown?event_name=example&property_key=example'
```

-

Returns event property value breakdown through share token.

## Parameters

### Path Parameters

**token**

required

string

**id**

required

string format: uuid

### Query Parameters

**from**

string format: date-time

**to**

string format: date-time

**event_name**

required

string

**property_key**

required

string

## Responses

### 200

Event property breakdown

application/json

Array<object>

object

**name**

string

**value**

integer

##### Examplegenerated

```
[
  {
    "name": "example",
    "value": 1
  }
]
```

[Previous Shared event audience](https://hitkeep.com/api/operations/apisharetokensitesideventsaudience/)[Next Shared event names](https://hitkeep.com/api/operations/apisharetokensitesideventsnames/)
