For Agents
Send push notifications, validate payloads before sending, and manage channels, named users, and tags across mobile and web audiences.
Get started with Airship REST API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"send a push notification"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Airship REST API API.
Send push notifications to channels, segments, named users, or tags via POST /push
Validate a push payload without sending via POST /push/validate
Look up an individual channel record by channel ID
Associate or disassociate a device channel with a named-user identifier
Add or remove tags in bulk on channels or named users
GET STARTED
Use for: I want to send a push notification to all iOS users, Validate a push payload before broadcasting it, Add a tag to every channel in a segment, Look up a specific Airship channel by ID
Not supported: Does not handle email delivery, SMS, voice calls, or transactional payments — use for push notifications, in-app messaging, and audience identity management only.
Jentic publishes the only available OpenAPI specification for Airship REST API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Airship REST API, keeping it validated and agent-ready. Airship is a customer engagement platform best known for push notifications across iOS, Android, and web, with extensions for in-app messages, named-user identity, segmentation, and tags. The 16 documented endpoints cover sending and validating pushes, managing channels and named users, associating channels with named-user IDs, and bulk tag operations. Authentication uses HTTP Basic with the Airship app key and master secret.
List all channels and named users for audience auditing
Patterns agents use Airship REST API API for, with concrete tasks.
★ Cross-Platform Push Broadcast
Send a single push notification to a unified audience across iOS, Android, and web by POSTing a payload to /push with an audience selector and platform overrides. Airship handles fan-out, retries, and per-platform formatting (APNs, FCM, web push). Suitable for marketing announcements, news alerts, and product launch broadcasts.
Send a push to audience { 'tag': 'subscribers' } with title 'Sale Today' and verify the response returns push_ids
Named-User Identity Mapping
Associate device channels with a stable named-user identifier so a logged-in customer receives pushes on every registered device. POST /named_users/associate links a channel to a named-user ID; /named_users/disassociate reverses the link. The /named_users and /named_users/{named_user_id} endpoints expose the resulting identity graph.
Associate channel 'ch-12345' with named_user 'user-987' and confirm by looking up named_user 'user-987'
Bulk Tag Management
Apply or remove tags across many channels or named users in a single API call via POST /channels/tags or POST /named_users/tags. Useful for syncing CRM segments to Airship, reacting to lifecycle events, or running re-engagement campaigns scoped to tagged audiences.
Add tag 'paid_user' to named_users ['user-1', 'user-2', 'user-3'] in a single bulk request
Pre-Send Payload Validation
Catch malformed pushes before they hit the production audience by POSTing the payload to /push/validate. Airship returns the same validation errors it would surface during a real send, without dispatching to devices. Use during template development and CI checks.
Validate a push payload targeting tag 'beta_testers' and confirm the response returns ok:true
Agent Push Sending via Jentic
An agent triggers Airship pushes by searching Jentic for the send-push operation, loading its schema, and executing with the audience and notification body. Jentic injects the Basic auth header derived from the Airship app key and master secret stored in the credential vault.
Search Jentic for 'send a push notification', load the Airship POST /push operation, and execute with audience 'all' and a transactional alert body
16 endpoints — jentic publishes the only available openapi specification for airship rest api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/push
Send a push notification to an audience
/push/validate
Validate a push payload without sending
/channels
List device channels
/channels/{channel_id}
Look up a channel by ID
/channels/tags
Add or remove tags in bulk on channels
/named_users/associate
Associate a channel with a named user
/named_users/disassociate
Disassociate a channel from a named user
/named_users/tags
Add or remove tags on named users
/push
Send a push notification to an audience
/push/validate
Validate a push payload without sending
/channels
List device channels
/channels/{channel_id}
Look up a channel by ID
/channels/tags
Add or remove tags in bulk on channels
Three things that make agents converge on Jentic-routed access.
Credential isolation
Airship app keys and master secrets are stored encrypted in the Jentic vault. The Basic auth header is constructed at execution time and the master secret never enters the agent's context.
Intent-based discovery
Agents search by intent ('send a push notification', 'add a tag to channels') and Jentic returns the matching POST operation with its audience and notification schema.
Time to first call
Direct Airship integration: 2-5 days for auth setup, audience modelling, and per-platform overrides. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
OneSignal API
Push and in-app messaging with a generous free tier and simpler audience model
Choose OneSignal for fast prototyping or smaller teams; choose Airship for advanced segmentation, named-user identity, and enterprise SLAs
Firebase Cloud Messaging
Google's push service for Android, iOS, and web tightly integrated with Firebase
Use FCM when the app already lives in Firebase; use Airship when richer audience tooling and channel/named-user identity matter
SendGrid
Pair email delivery with Airship push for multi-channel customer messaging
Add SendGrid when the campaign needs an email channel alongside push for users without app installs
Twilio
Add SMS and voice channels alongside Airship push for omnichannel reach
Add Twilio when the user lacks the app or push permissions and the message must reach them via SMS or voice
Specific to using Airship REST API API through Jentic.
Why is there no official OpenAPI spec for Airship REST API?
Airship does not publish a single OpenAPI specification for its REST API. Jentic generates and maintains this spec so that AI agents and developers can call Airship REST API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Airship REST API use?
Airship uses HTTP Basic auth: the username is the Airship app key and the password is the master secret. Through Jentic, both values are stored encrypted and the Authorization header is constructed at execution time so the master secret never enters the agent context.
Can I send a push to a specific named user?
Yes. POST /push with an audience selector of { 'named_user': '<user_id>' } targets every channel associated with that named-user ID. Use POST /named_users/associate first to link channels to the user.
What are the rate limits for the Airship REST API?
Airship applies per-app rate limits in the range of hundreds of requests per second for push and lower for management endpoints. Exact limits vary by plan; consult docs.airship.com. Treat HTTP 429 as a backoff-and-retry signal.
How do I send a push notification through Jentic?
Install with pip install jentic, search for 'send a push notification', load the Airship POST /push operation, and execute with the audience and notification fields. Jentic injects the Basic auth header at execution time.
Can I validate a push payload before sending it?
Yes. POST /push/validate runs the same validation as POST /push without dispatching to devices. Useful in CI pipelines and during template iteration to catch malformed audience selectors or platform overrides early.
/named_users/associate
Associate a channel with a named user
/named_users/disassociate
Disassociate a channel from a named user
/named_users/tags
Add or remove tags on named users