OpenAPI Specification
openapi: 3.0.3
info:
title: Radar Events API
description: Use Radar APIs as building blocks for location-based products and services like pickup and delivery tracking, location-triggered notifications, location verification, store locators, address autocomplete, and more. Or, use Radar APIs to manage your Radar data, including users, geofences, and events.
version: '1.0'
contact:
name: Radar
url: https://radar.com/documentation/api
servers:
- url: https://api.radar.io/v1
description: Radar production API
security:
- ApiKeyAuth: []
tags:
- name: Events
description: Query location events
paths:
/events:
get:
tags:
- Events
summary: List events
responses:
'200':
description: List of events
/events/{eventId}:
get:
tags:
- Events
summary: Retrieve an event
parameters:
- name: eventId
in: path
required: true
schema:
type: string
responses:
'200':
description: Event
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: Authorization