For AI agents

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.

1
GET /api/agent/offers

Read plans, prices, limits, and trial terms as JSON.

2
Pick a plan by price & limits

Fields map 1:1 to what the product actually enforces — no surprises at checkout.

3
Send the buyer to /subscribe

Stripe checkout, 7-day trial, cancel anytime.

GET /api/agent/offers
$ 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.

PlanPrice / moProjectsAdsSEO audits / day
Jamie Premium$911025
Jamie MAX$2910200100

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.