GET/events?start=0&count=10&apiType=0&filterType[0]=0| Key | Value (example) | Required |
|---|---|---|
x-api-key | your-api-key-here | ✅ |
| spaceId | Required only when fetching for a space. Defaults to community. | ❌ |
{
"data": {
"start": 0,
"count": 1,
"nextStart": false,
"content": [
{
"eventId": "682fc8aef7f6520012bd7719",
"name": "New events",
"eventImage": "",
"host": {
"id": "6787893423126f0012a92ed6",
"name": "Spencer Johnson Spencer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image (25).png",
"title": "Software Development Test Engineer WBC Community Test Engineer"
},
"happeningNow": true,
"startTime": 1747959300856,
"endTime": 1748655000000,
"location": "",
"contactNumber": "",
"contactEmail": "",
"type": 0,
"calendlyUrl": "",
"locationMap": "",
"interested": false,
"going": false,
"eventFormatType": 0,
"timezone": {
"key": "Asia/Colombo",
"value": "(GMT+05:30) India Standard Time - Colombo",
"timezone": "IST"
},
"isRecurringEvent": false,
"newtworkedLiveOrHuddle": {
"_id": "68340b09aace470012948d77",
"status": 1,
"host": "6787893423126f0012a92ed6",
"community": "67959032bc6bea0012fdc671",
"roomType": 0,
"passPhrase": {
"host": "0a7949b2-b2fa-4d4b-b88b-45bbf0925d59",
"view": "ddd5ef2f-e2de-45cd-9a1e-8362325fa094"
},
"channelId": "239b1dae-9649-4cef-bbc1-248c083ae235",
"roomTitle": "New events",
"event": "682fc8aef7f6520012bd7719",
"timeStamp": 1748241161568
}
}
]
},
"error": false,
"message": "Success"
}
interface GetEventsResponse {
data: {
start: number;
count: number;
nextStart: boolean;
content: Event[];
};
error: boolean;
message: string;
}
interface Event {
eventId: string;
name: string;
eventImage: string;
host: {
id: string;
name: string;
image: string;
title: string;
};
happeningNow: boolean;
startTime: number;
endTime: number;
location: string;
contactNumber: string;
contactEmail: string;
type: number;
calendlyUrl: string;
locationMap: string;
interested: boolean;
going: boolean;
eventFormatType: number;
timezone: {
key: string;
value: string;
timezone: string;
};
isRecurringEvent: boolean;
newtworkedLiveOrHuddle: {
_id: string;
status: number;
host: string;
community: string;
roomType: number;
passPhrase: {
host: string;
view: string;
};
channelId: string;
roomTitle: string;
event: string;
timeStamp: number;
};
}
| Field | Type | Description |
|---|---|---|
start | number | Pagination start index |
count | number | Number of events returned |
nextStart | boolean | Indicates if more results are available |
eventId | string | Unique identifier of the event |
name | string | Title of the event |
eventImage | string | URL to the event image (if any) |
host | object | Details about the host: id, name, image, and title |
happeningNow | boolean | Whether the event is currently ongoing |
startTime | number | Event start time (UNIX timestamp in ms) |
endTime | number | Event end time (UNIX timestamp in ms) |
location | string | Location of the event |
contactNumber | string | Contact phone number for the event |
contactEmail | string | Contact email for the event |
type | number | Type identifier (event categorization) |
calendlyUrl | string | Optional Calendly link |
locationMap | string | Optional location map link |
interested | boolean | Whether the user is interested |
going | boolean | Whether the user is attending |
eventFormatType | number | Format type of the event |
timezone | object | Timezone metadata: key, label, and short code |
isRecurringEvent | boolean | Whether this event repeats |
newtworkedLiveOrHuddle | object | Linked video room/huddle configuration if any |
curl --location --globoff 'https://backend.networked.co/events?start=0&count=10&apiType=1&filterType[0]=0' \
--header 'x-api-key: <your-api-key>'{
"data": {
"start": 0,
"count": 1,
"nextStart": false,
"content": [
{
"eventId": "682fc8aef7f6520012bd7719",
"name": "New events",
"eventImage": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1752323789285_image_cropper_95E9F582-95A2-4B37-B441-B22A639E3EDF-24354-0000092E57D8A423.jpg",
"host": {
"id": "6787893423126f0012a92ed6",
"name": "Spencer Johnson Spencer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
"title": " Software Development Test Engineer WBC Community Test Engineer"
},
"happeningNow": true,
"startTime": 1747959300856,
"endTime": 1748655000000,
"location": "Delhi, India~28.7040592~77.10249019999999",
"contactNumber": "",
"contactEmail": "",
"type": 0,
"calendlyUrl": "",
"locationMap": "",
"interested": false,
"going": false,
"eventFormatType": 0,
"timezone": {
"key": "Asia/Colombo",
"value": "(GMT+05:30) India Standard Time - Colombo",
"timezone": "IST"
},
"isRecurringEvent": false,
"newtworkedLiveOrHuddle": {
"_id": "68340b09aace470012948d77",
"status": 1,
"host": "6787893423126f0012a92ed6",
"community": "67959032bc6bea0012fdc671",
"roomType": 0,
"passPhrase": {
"host": "0a7949b2-b2fa-4d4b-b88b-45bbf0925d59",
"view": "ddd5ef2f-e2de-45cd-9a1e-8362325fa094"
},
"channelId": "239b1dae-9649-4cef-bbc1-248c083ae235",
"roomTitle": "New events",
"event": "682fc8aef7f6520012bd7719",
"timeStamp": 1748241161568
}
}
]
},
"error": false,
"message": "Operation completed successfully"
}