For Agents
Send a digital gift to a recipient and check the delivery status, used in sales outreach, customer success, and incentive flows.
Get started with AirGift 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 digital gift"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with AirGift API API.
Send a branded digital gift to a recipient via POST /gifts
Retrieve the status of a previously sent gift via GET /gifts/{id}
Drive sales prospecting and customer success campaigns with personalised gifting
Confirm gift redemption before logging activity into a CRM
GET STARTED
Use for: Send a digital gift to a prospect, I want to check whether a gift was redeemed, Retrieve gift details by ID, Send a thank-you gift to a customer
Not supported: Does not handle physical gift fulfilment, rewards catalog browsing, or recipient address management — use for sending and tracking digital gifts only.
Jentic publishes the only available OpenAPI specification for AirGift API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for AirGift API, keeping it validated and agent-ready. AirGift is a digital gifting and rewards platform for sending branded gifts as part of marketing, sales, and customer success workflows. The API is intentionally minimal — two endpoints cover sending a digital gift and retrieving its status. Authentication is via an API key passed in the Authorization header.
Patterns agents use AirGift API API for, with concrete tasks.
★ Sales Prospecting Gift Drops
Boost outbound response rates by attaching a small digital gift to high-priority prospect emails. POST /gifts sends the gift with the recipient email and amount, and the response includes a redemption link the rep can paste into the outreach sequence.
Send a $25 digital gift to prospect@example.com with the message 'Thanks for taking the meeting' and capture the redemption link in the CRM activity record
Customer Success Thank-You Workflow
Trigger a thank-you gift after a customer hits a milestone — first renewal, NPS promoter, case study contribution. The two-endpoint surface makes integration into a workflow tool a simple POST followed by an optional status poll for redemption confirmation.
Send a $50 gift to a customer who scored 9 or 10 on the latest NPS survey, then check the gift status 7 days later and flag any unredeemed gifts for follow-up
AI Agent Gifting Operator
An agent driving outreach can decide when to attach a gift, send it via Jentic, and capture the redemption link in the same flow. The Authorization API key stays in the Jentic vault and only the two scoped operations are exposed.
Search Jentic for 'send a digital gift', load the POST /gifts schema, send a $20 gift to recipient@example.com, and store the returned gift ID in the CRM
2 endpoints — jentic publishes the only available openapi specification for airgift api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/gifts
Send a digital gift
/gifts/{id}
Get gift details and status
/gifts
Send a digital gift
/gifts/{id}
Get gift details and status
Three things that make agents converge on Jentic-routed access.
Credential isolation
The AirGift API key is stored encrypted in the Jentic vault. Jentic adds the Authorization header on each call, so the key does not appear in agent prompts, logs, or model context.
Intent-based discovery
Agents search Jentic by intent (e.g. 'send a digital gift') and Jentic returns the matching AirGift operation with its input schema, no doc browsing required.
Time to first call
Direct AirGift integration: 2-4 hours for auth, payload validation, and webhook-free polling for redemption status. Through Jentic: under 15 minutes.
Alternatives and complements available in the Jentic catalogue.
Giftogram API
Programmatic digital gift card sending across hundreds of brand catalogs
Choose Giftogram when recipients should pick from a multi-brand gift card catalog rather than receive a fixed AirGift voucher
HubSpot CRM Contacts
Log gift sends and redemption events back to the contact record in HubSpot
Use HubSpot alongside AirGift to keep gifting activity tied to the contact's lifecycle in the CRM
Aircall Public API
Trigger an AirGift after a closed-won sales call logged in Aircall
Use Aircall alongside AirGift when post-call disposition triggers a gift drop to the contact
Specific to using AirGift API API through Jentic.
Why is there no official OpenAPI spec for AirGift API?
AirGift does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call AirGift 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 AirGift API use?
AirGift uses an API key passed in the Authorization header. Jentic stores the key encrypted in the vault and adds the header at call time, so the raw API key is never exposed to the agent.
Can I send a digital gift with the AirGift API?
Yes. POST /gifts accepts the recipient details, gift amount, and any personalised message and returns a gift ID and redemption URL the recipient can use to claim the gift.
What are the rate limits for the AirGift API?
The spec does not declare formal rate limits. With only two endpoints, AirGift is best used in burst-and-pause patterns from a workflow rather than tight loops; respect HTTP 429 responses if you hit them.
How do I check whether a gift was redeemed through the AirGift API via Jentic?
Run pip install jentic, search Jentic for 'check airgift status', load the schema for GET /gifts/{id}, then execute with the gift ID. The response contains the redemption state. Jentic applies the Authorization header automatically.