OfflineNetworkingBrowse events
Offline Networking API

Local event data, ready to build on.

Use a private API key to pull current professional networking events across Orange County, Los Angeles, and San Diego. Keys are issued individually and can be revoked at any time.

List events

GET /api/v1/events

The response includes all public fields needed to display and link an event, with an opaque nextCursor when another page is available.

curl "https://www.offlinenetworking.com/api/v1/events?county=Orange%20County&limit=25" \
  -H "Authorization: Bearer on_live_your_api_key"

Query parameters

start, endYYYY-MM-DD; defaults to today through the next 90 days. A request may span up to 180 days.
countyOrange County, Los Angeles County, or San Diego County.
industryAn industry slug, such as startup, tech_ai, or real_estate.
online, referralSet either to true to include those events. Both are excluded by default.
limit1 to 100; defaults to 50.
cursorUse the nextCursor returned by the prior request.

Response

{
  "object": "list",
  "version": "2026-07-17",
  "data": [{
    "id": "...",
    "title": "...",
    "startsAt": "2026-09-24T00:00:00.000Z",
    "eventUrl": "https://www.offlinenetworking.com/events/...",
    "sourceUrl": "https://...",
    "venue": "...",
    "city": "Irvine",
    "location": { "latitude": 33.6, "longitude": -117.8 },
    "industries": ["startup"],
    "isOnline": false
  }],
  "pagination": { "count": 1, "nextCursor": null }
}