Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
openapi: 3.2.0
info:
title: Airmeet Public Manage Event Series API
version: '1.0'
description: The Airmeet Public API lets you programmatically manage events (Airmeets), registrations, sessions, speakers, booths and event series on the Airmeet virtual, hybrid and in-person events platform, and read back event engagement and attendance data.
contact:
name: Airmeet Support
email: support@airmeet.com
url: https://help.airmeet.com/support/solutions/82000362508
termsOfService: https://www.airmeet.com/hub/terms-of-use/
servers:
- url: https://api-gateway.airmeet.com/prod
description: Default region (Mumbai)
- url: https://api-gateway-prod.eu.airmeet.com/prod
description: EU region
- url: https://api-gateway-prod.us.airmeet.com/prod
description: US region
security:
- accessToken: []
tags:
- name: Manage Event Series
description: List event series and the events within a series.
paths:
/event-series:
get:
operationId: listEventSeries
summary: List event series
description: Get a list of all event series in a community.
tags:
- Manage Event Series
responses:
'200':
$ref: '#/components/responses/Success'
'401':
$ref: '#/components/responses/Unauthorized'
'500':
$ref: '#/components/responses/ServerError'
/event-series/{eventSeriesId}/events:
get:
operationId: listEventSeriesEvents
summary: List events within a series
description: Retrieve a list of all events inside an event series.
tags:
- Manage Event Series
parameters:
- name: eventSeriesId
in: path
required: true
schema:
type: string
description: Event series identifier.
responses:
'200':
$ref: '#/components/responses/Success'
'401':
$ref: '#/components/responses/Unauthorized'
'500':
$ref: '#/components/responses/ServerError'
components:
responses:
ServerError:
description: Internal server error.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
Success:
description: Successful response.
content:
application/json:
schema:
$ref: '#/components/schemas/Envelope'
Unauthorized:
description: Missing or invalid credentials/token.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
schemas:
Envelope:
type: object
properties:
success:
type: boolean
data: {}
Error:
type: object
properties:
success:
type: boolean
example: false
message:
type: string
error:
type: string
securitySchemes:
accessKey:
type: apiKey
in: header
name: X-Airmeet-Access-Key
description: Community access key, presented at POST /auth.
secretKey:
type: apiKey
in: header
name: X-Airmeet-Secret-Key
description: Community secret key, presented at POST /auth.
accessToken:
type: apiKey
in: header
name: X-Airmeet-Access-Token
description: Bearer access token issued by POST /auth, valid for 30 days.
webhookAccessKey:
type: apiKey
in: header
name: x-access-key
description: Access key for webhook registration.
webhookSecretKey:
type: apiKey
in: header
name: x-secret-key
description: Secret key for webhook registration.
externalDocs:
description: Airmeet Public API documentation
url: https://help.airmeet.com/support/solutions/articles/82000467794-airmeet-public-api-introduction