# ShopperPulse Birdie AI Personal Shopper

> ShopperPulse Birdie AI Personal Shopper is a paid API for AI agents from shopperpulse.theaslangroupllc.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

POST a shopping list and receive the 3 best-fit product picks per item plus a stacked savings plan covering loyalty programs, coupons, discounted gift cards, and credit card recommendations.

## Facts

- Endpoint: POST https://shopperpulse.theaslangroupllc.com/api/shopper/trip
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shopperpulse-birdie-ai-personal-shopper-d37b1e71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z43Ei96-nluizJF5ifsGx

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability shopperpulse-birdie-ai-personal-shopper-d37b1e71 -d '<json body>'
```

Example prompt: I need to buy 5A hickory drumsticks made in the USA, a snare drum stand, and a practice pad — find me the 3 best picks for each item and put together a savings plan with loyalty programs, coupons, and the best credit card to use.

## When to prefer this

Choose this endpoint when a user has a concrete list of items to buy and wants AI-curated product recommendations paired with an actionable savings strategy (loyalty, coupons, gift cards, credit card pairing) in a single call. Prefer it over general search APIs when stacked deal optimization and ranked picks per item are needed together.

## Known failure modes

- Empty or malformed shopping list returns no picks
- Highly niche or ambiguous item descriptions may yield low-confidence recommendations
- Retailer links in response may be affiliate links or become stale over time
- No items found matching spec — pick list may be empty for that item
- Network or payment authorization failure returns no response

## How this service works

Birdie, the AI personal shopper: POST a shopping list (up to 3 items, free text or structured) and get back 3 best-fit picks per item plus a stacked savings plan — loyalty %, coupons, discounted gift cards, and the right credit card — researched live across the PulseNetwork shopping fleet. Best fit to your spec wins, not the cheapest listing.

## Output

Returns a structured trip object containing up to 3 ranked product picks per shopping list item (with product name, retailer, estimated price, purchase link, and a reason for the recommendation), a step-by-step savings plan (loyalty signups, coupons, discounted gift cards), an overall estimated total, a credit card recommendation, a disclosure about affiliate commissions, and a generation timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lang": {
   "type": "string",
   "description": "optional response language"
  },
  "list": {
   "type": "string",
   "description": "JSON body alternative: free-text shopping list, parsed automatically"
  },
  "items": {
   "type": "string",
   "description": "JSON body array, max 3: [{ query: \"what you want with specs\", budget_usd?: 20, used?: true, ethical?: true, local?: \"Austin TX\" }]"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "trip": {
   "items": [
    {
     "picks": [
      {
       "why": "US-made hickory, matches spec under budget",
       "name": "Vater 5A Hickory",
       "rank": 1,
       "links": [
        "https://example.com/vater-5a"
       ],
       "where": "Sweetwater",
       "est_price": "$14"
      }
     ],
     "request": "5A hickory drumsticks made in USA"
    }
   ],
   "savings_plan": {
    "steps": [
     {
      "step": 1,
      "action": "Join retailer loyalty program (5% first order)",
      "estimated_savings": "$1.00"
     }
    ]
   },
   "total_estimated": "$38",
   "card_recommendation": "Flat 2% cashback card — no category bonus applies here"
  },
  "disclosure": "Birdie earns commissions from some links; her picks don’t.",
  "generated_at": "2026-07-18T20:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/shopperpulse-birdie-ai-personal-shopper-d37b1e71/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from shopperpulse.theaslangroupllc.com](https://www.zero.xyz/host/shopperpulse.theaslangroupllc.com/llms.txt)
