event-rsvps
event-rsvps
Page 57 of 58.
Overview
-
User #64 RSVP'd going Event #147
1/30/2026, 5:02:13 PM
View record -
User #50 RSVP'd declined Event #147
11/21/2025, 2:14:52 PM
View record -
User #35 RSVP'd maybe Event #147
5/4/2026, 10:53:01 AM
View record -
User #26 RSVP'd going Event #147
11/16/2025, 6:03:13 PM
View record -
User #209 RSVP'd going Event #147
8/26/2025, 6:32:40 PM
View record -
User #231 RSVP'd going Event #147
5/20/2026, 10:06:40 AM
View record -
User #118 RSVP'd going Event #147
12/25/2025, 6:34:56 AM
View record -
User #229 RSVP'd going Event #148
8/27/2025, 1:06:50 AM
View record -
User #29 RSVP'd going Event #148
9/30/2025, 10:01:05 PM
View record -
User #217 RSVP'd going Event #148
3/3/2026, 9:55:08 AM
View record -
User #222 RSVP'd going Event #148
7/3/2025, 4:19:30 PM
View record -
User #172 RSVP'd declined Event #148
12/5/2025, 6:39:24 PM
View record -
User #106 RSVP'd going Event #148
4/22/2026, 8:12:58 AM
View record -
User #164 RSVP'd going Event #148
5/11/2026, 5:02:09 AM
View record -
User #19 RSVP'd going Event #149
6/2/2025, 10:23:36 PM
View record -
User #1 RSVP'd going Event #149
2/3/2026, 5:03:33 PM
View record -
User #218 RSVP'd going Event #149
10/13/2025, 7:52:38 AM
View record -
User #153 RSVP'd going Event #149
7/10/2025, 3:51:52 AM
View record -
User #99 RSVP'd going Event #149
10/19/2025, 12:11:53 AM
View record -
User #8 RSVP'd declined Event #149
7/12/2025, 12:53:36 PM
View record -
User #192 RSVP'd going Event #149
6/2/2025, 3:16:42 PM
View record -
User #129 RSVP'd maybe Event #149
4/29/2026, 8:29:11 PM
View record -
User #110 RSVP'd going Event #149
4/27/2026, 12:19:47 PM
View record -
User #66 RSVP'd going Event #149
9/10/2025, 7:45:53 PM
View record
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/event-rsvps?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/event-rsvps.d.ts https://example-data.com/types/event-rsvps.d.ts
import type { EventRsvp, ListEnvelope } from "./types/event-rsvps";
const res = await fetch(
"https://example-data.com/api/v1/event-rsvps?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<EventRsvp>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 1345,
"eventId": 147,
"userId": 64,
"status": "going",
"respondedAt": "2026-01-30T17:02:13.169Z"
},
{
"id": 1346,
"eventId": 147,
"userId": 50,
"status": "declined",
"respondedAt": "2025-11-21T14:14:52.515Z"
},
{
"id": 1347,
"eventId": 147,
"userId": 35,
"status": "maybe",
"respondedAt": "2026-05-04T10:53:01.714Z"
}
],
"meta": {
"page": 57,
"limit": 24,
"total": 1378,
"totalPages": 58
},
"links": {
"self": "/api/v1/event-rsvps?page=57&limit=24",
"first": "/api/v1/event-rsvps?page=1&limit=24",
"last": "/api/v1/event-rsvps?page=58&limit=24",
"next": "/api/v1/event-rsvps?page=58&limit=24",
"prev": "/api/v1/event-rsvps?page=56&limit=24"
}
}