Activity #1154
User #126 RSVP'd going Event #128
3/13/2026, 7:57:03 PM
Overview
event-rsvps / #1154
User #126 RSVP'd going Event #128
3/13/2026, 7:57:03 PM
User #126 RSVP'd going Event #128
3/13/2026, 7:57:03 PM
View recordUser #126 RSVP'd going Event #128 · 3/13/2026, 7:57:03 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/1154" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/1154" ); const eventRsvp = 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 } from "./types/event-rsvps";
const res = await fetch(
"https://example-data.com/api/v1/event-rsvps/1154"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/1154"
)
event_rsvp = res.json() Response
{
"id": 1154,
"eventId": 128,
"userId": 126,
"status": "going",
"respondedAt": "2026-03-13T19:57:03.471Z"
}