Building an agent that buys or places ads?
Jamie Ads is an instant-access ad platform and AI SEO/AEO auditor. Agents can read a machine-readable offers catalog, choose a plan by price and limits, and send the buyer to Stripe checkout. Jamie Premium is $9/month and Jamie MAX is $29/month, each with a 7-day free trial.
GET /api/agent/offersRead plans, prices, limits, and trial terms as JSON.
Pick a plan by price & limitsFields map 1:1 to what the product actually enforces — no surprises at checkout.
Send the buyer to /subscribeStripe checkout, 7-day trial, cancel anytime.
$ curl https://jamiepulls.com/api/agent/offers
{
"provider": { "name": "Jamie Ads" },
"trial": { "days": 7, "requires_card": false },
"plans": [
{
"id": "premium",
"price_monthly": 9,
"limits": { "projects": 1, "ads": 10 },
"checkout_url": ".../subscribe?plan=premium"
},
{
"id": "max",
"price_monthly": 29,
"limits": { "projects": 10, "ads": 200 },
"checkout_url": ".../subscribe?plan=max"
}
],
"entitlement_error": {
"status": 402,
"codes": ["PLAN_REQUIRED","QUOTA_EXCEEDED","TRIAL_EXPIRED"]
}
}Checkout runs through Stripe. Entitlement-gated APIs return HTTP 402 (PLAN_REQUIRED / QUOTA_EXCEEDED / TRIAL_EXPIRED). Full delegated-payment (Agentic Commerce Protocol) support is on the roadmap.
Plan reference
The same values are returned by GET /api/agent/offers. A 7-day free trial (no card) grants Premium-level access.
| Plan | Price / mo | Projects | Ads | SEO audits / day |
|---|---|---|---|---|
| Jamie Premium | $9 | 1 | 10 | 25 |
| Jamie MAX | $29 | 10 | 200 | 100 |
Note: full delegated-payment (Agentic Commerce Protocol) support is on the roadmap and under legal review before launch. Today, agents complete purchases by directing the buyer to Stripe checkout at /subscribe.