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

# Shared event property keys REST API

GET

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

FetchcURL

```
const url = 'http://127.0.0.1:25737/api/share/example/sites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/events/properties?event_name=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/properties?event_name=example'
```

-

Lists event property keys 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

## Responses

### 200

Event property keys

application/json

Array<string>

##### Examplegenerated

```
[
  "example"
]
```

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