Skip to main content
GET
/
v1
/
radar
/
byOrganizationId
Get Radar by Organization ID
curl --request GET \
  --url https://api.shoal.xyz/v1/radar/byOrganizationId \
  --header 'Authorization: Bearer <token>'
Returns radar events where a specific organization appears as the event owner or participant. Use this to build an organization-level activity feed or monitor a single project for news.

Query Parameters

  • id (integer, required) — Organization ID
  • limit (integer, default: 50, max: 50)
  • offset (integer, default: 0, max: 500)
  • since (string, optional) — ISO 8601 timestamp. Only return events newer than this time. See Polling Guide.
  • cursor (string, optional) — Opaque cursor token from a previous next_cursor response. When provided, since is required and offset is ignored.

Request

cURL
curl -X GET "https://api.shoal.xyz/v1/radar/byOrganizationId?id=526" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

Same as /v1/radar/all but filtered for one organization. Includes next_cursor (string or null) for cursor-based pagination.

Errors

  • 400 if id missing
  • 500 on internal server error