For Agents
List Giftogram reward campaigns and use them to programmatically send branded gift cards to recipients via Bearer-authenticated requests.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Giftogram API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Giftogram API.
List configured Giftogram campaigns available to the authenticated account
Resolve campaign IDs needed to trigger gift card sends from downstream systems
Switch between sandbox and production base URLs to test reward flows safely
Authenticate with a Bearer token issued from the Giftogram dashboard
GET STARTED
Use for: List all Giftogram campaigns on my account, Find the campaign ID for our customer thank-you program, Check whether a Giftogram campaign is active before sending a reward, Retrieve available gift card brands configured in a Giftogram campaign
Not supported: Does not handle payment processing, accounting, or recipient identity verification — use for listing Giftogram reward campaigns only.
Jentic publishes the only available OpenAPI specification for Giftogram API, keeping it validated and agent-ready. The Giftogram API lets businesses programmatically send digital gift cards and prepaid cards to customers, employees, and survey respondents. Agents can list active campaigns and use them as the source of branded gift card inventory for reward and incentive workflows. Authentication is a Bearer token issued from the Giftogram dashboard, and the API offers a sandbox environment for safe testing before production sends.
Power survey-completion and customer-thank-you reward automations from agent code
Patterns agents use Giftogram API for, with concrete tasks.
★ Survey Reward Automation
Reward respondents who complete a customer feedback survey by listing active Giftogram campaigns, picking the one allocated to that survey, and triggering a gift card send. Giftogram handles the brand catalogue, delivery email, and recipient redemption so the agent only needs the campaign ID and recipient details.
List Giftogram campaigns, select the campaign named 'Q2 NPS Survey Reward', and stage a $10 gift card send to the respondent's email
Employee Recognition Program
Run a peer-recognition or anniversary reward program by mapping internal recognition events to Giftogram campaigns. The API exposes the campaign list so an agent can resolve the right reward bucket for a given event type and amount, then trigger a digital gift card delivery.
List Giftogram campaigns and return the campaign ID for the 'Work Anniversary' program along with its configured brands
Customer Win-back Campaign
Re-engage churned customers with a personalised digital gift card. The agent picks an offer-tier campaign from the Giftogram account, uses the returned campaign ID to fulfil the send, and tracks delivery via the Giftogram dashboard.
List Giftogram campaigns tagged for customer win-back, return the matching campaign ID, and confirm sandbox vs production base URL before sending
AI Agent Reward Distribution
Use Jentic to let an AI agent fulfil reward decisions made elsewhere in a workflow. The agent issues an intent like 'list reward campaigns', Jentic resolves the Giftogram /campaigns call, executes it with the Bearer token held in the vault, and returns the campaign list the agent uses to choose a reward.
Through Jentic, call GET /campaigns, filter to active campaigns under $25, and return the first campaign ID for an automated reward send
1 endpoints — jentic publishes the only available openapi specification for giftogram api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/campaigns
List reward campaigns on the account
/campaigns
List reward campaigns on the account
Three things that make agents converge on Jentic-routed access.
Credential isolation
Giftogram Bearer tokens are stored encrypted in the Jentic vault (MAXsystem). Agents receive a scoped execution token — the raw Bearer secret never enters the agent's prompt or transcript.
Intent-based discovery
Agents search by intent (e.g. 'list reward campaigns') and Jentic returns the matching Giftogram operation with its response schema, so the agent can invoke GET /campaigns without reading the docs.
Time to first call
Direct Giftogram integration: 1-2 days for token handling, sandbox testing, and error mapping. Through Jentic: under 30 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Stripe API
Payment processing for funding reward budgets and tracking refund flows alongside Giftogram sends
Use Stripe alongside Giftogram when the agent must charge a customer or refund a reward outside the gift card flow.
Specific to using Giftogram API through Jentic.
Why is there no official OpenAPI spec for Giftogram API?
Giftogram does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Giftogram 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 Giftogram API use?
The Giftogram API uses Bearer token authentication. You generate the token in the Giftogram dashboard under API settings, and pass it as Authorization: Bearer <token>. Through Jentic the token is held in the MAXsystem vault and never appears in the agent's prompt context.
Can I list my reward campaigns with the Giftogram API?
Yes. Call GET /campaigns to retrieve every campaign on the authenticated account, including campaign id, name, and configured brands. Use the returned campaign id when triggering downstream gift card sends from the Giftogram dashboard or partner integrations.
Is there a sandbox environment for the Giftogram API?
Yes. Giftogram exposes a sandbox at https://sandbox.api.giftogram.com that mirrors production endpoints without sending real gift cards. Use a sandbox Bearer token from the dashboard to test the /campaigns flow before switching to https://api.giftogram.com.
How do I trigger a reward send through Jentic with Giftogram?
Search Jentic for 'list giftogram campaigns', load the GET /campaigns schema, execute with the stored Bearer token, and use the returned campaign id to drive your reward fulfilment workflow. The Giftogram dashboard handles delivery, branding, and recipient redemption.
What does the Giftogram API cost to use?
The Giftogram API itself is free; you pay for the gift card face value plus Giftogram's per-card fee, billed against funds you have loaded onto your Giftogram account. There is no separate API access charge or monthly minimum for read operations like /campaigns.