Activity #1234
User #208 RSVP'd going Event #137
1/26/2026, 10:52:16 PM
Overview
event-rsvps / #1234
User #208 RSVP'd going Event #137
1/26/2026, 10:52:16 PM
User #208 RSVP'd going Event #137
1/26/2026, 10:52:16 PM
View recordUser #208 RSVP'd going Event #137 · 1/26/2026, 10:52:16 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/1234" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/1234" ); 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/1234"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/1234"
)
event_rsvp = res.json() Response
{
"id": 1234,
"eventId": 137,
"userId": 208,
"status": "going",
"respondedAt": "2026-01-26T22:52:16.104Z"
}