You are viewing demo data. Connect your Amazon account to see your real data.
AI Starter Prompts Demo Store — Solo — £49/mo
Your credentials — already substituted into every prompt below API Key     : amzd_sk_8_YkE9ke-ZmE5UyzB7UvQpryGnyZJqij8PaKP2d1gzc Account ID : d059ae88-374d-41af-adf3-15321c9c7eb9 Date range : 2026-02-14 → 2026-03-16
These are demo credentials. Sign up and connect your Amazon account to get your own.

Copy any prompt into Claude, ChatGPT, or Cursor. Your key and account ID are already filled in — just hit send.

1. Campaign performance summary

Pulls the last 30 days of campaign data and asks for a plain-English summary with actionable recommendations.

You are an Amazon PPC analyst. I will give you campaign data from my ad account.

Fetch this URL and use the JSON response as your data:
GET https://www.amzapistack.co.uk/api/v1/accounts/d059ae88-374d-41af-adf3-15321c9c7eb9/campaigns/?start_date=2026-02-14&end_date=2026-03-16
Authorization: Bearer amzd_sk_8_YkE9ke-ZmE5UyzB7UvQpryGnyZJqij8PaKP2d1gzc

Analyse the campaigns. For each campaign:
- Calculate CTR (clicks / impressions)
- Flag any campaign with ACoS > 30% or spend > 500 with 0 sales
- Identify the top 3 campaigns by ROAS

Finish with 3 concrete actions I should take this week.

2. Search term waste finder

Identifies search terms spending budget with no attributed sales — prime candidates for negative keywords.

You are an Amazon PPC specialist. Find wasted ad spend in my search term data.

Fetch:
GET https://www.amzapistack.co.uk/api/v1/accounts/d059ae88-374d-41af-adf3-15321c9c7eb9/search-terms/?start_date=2026-02-14&end_date=2026-03-16
Authorization: Bearer amzd_sk_8_YkE9ke-ZmE5UyzB7UvQpryGnyZJqij8PaKP2d1gzc

Rules:
- "Wasted" = spend > 5 AND attributed_sales_7d = 0
- Sort by spend descending
- List the top 10 wasted terms with their spend and impressions
- Suggest whether each should be an exact, phrase, or broad negative keyword

3. Inventory restock alert

Checks FBA stock levels and flags SKUs at risk of running out based on recent sales velocity.

You are an Amazon inventory planner.

Step 1 — Get current inventory:
GET https://www.amzapistack.co.uk/api/v1/accounts/d059ae88-374d-41af-adf3-15321c9c7eb9/inventory/
Authorization: Bearer amzd_sk_8_YkE9ke-ZmE5UyzB7UvQpryGnyZJqij8PaKP2d1gzc

Step 2 — Get last 14 days of sales:
GET https://www.amzapistack.co.uk/api/v1/accounts/d059ae88-374d-41af-adf3-15321c9c7eb9/sales-and-traffic/?start_date=2026-02-14&end_date=2026-03-16
Authorization: Bearer amzd_sk_8_YkE9ke-ZmE5UyzB7UvQpryGnyZJqij8PaKP2d1gzc

For each SKU:
- Calculate daily sales velocity (units_ordered / 14)
- If daily_velocity = 0, mark days_remaining as "no recent sales" and skip
- Otherwise: days_remaining = afn_fulfillable_quantity / daily_velocity
- Flag fewer than 21 days as HIGH priority
- Flag 21-45 days as MEDIUM priority

Output a restock table: SKU | Stock | Daily velocity | Days remaining | Priority

4. TACoS trend analysis

Computes Total ACoS by combining ad spend with organic sales, and identifies trends over time.

You are an Amazon performance analyst. Compute my TACoS trends.

Step 1 — Ad spend by date:
GET https://www.amzapistack.co.uk/api/v1/accounts/d059ae88-374d-41af-adf3-15321c9c7eb9/campaigns/?start_date=2026-02-14&end_date=2026-03-16
Authorization: Bearer amzd_sk_8_YkE9ke-ZmE5UyzB7UvQpryGnyZJqij8PaKP2d1gzc

Step 2 — Total sales by date:
GET https://www.amzapistack.co.uk/api/v1/accounts/d059ae88-374d-41af-adf3-15321c9c7eb9/sales-and-traffic/?start_date=2026-02-14&end_date=2026-03-16
Authorization: Bearer amzd_sk_8_YkE9ke-ZmE5UyzB7UvQpryGnyZJqij8PaKP2d1gzc

For each date:
- Sum total spend across all campaigns
- Sum ordered_product_sales across all ASINs
- TACoS = total_spend / total_sales * 100

Show daily TACoS as a table. Flag any week where TACoS increased by more than 5 percentage points and suggest a likely cause.

5. Brand analytics keyword gap finder

Finds high-frequency search terms where your ASINs are not in the top 3 clicked — gap opportunities to target.

You are an Amazon SEO strategist.

Fetch brand analytics data:
GET https://www.amzapistack.co.uk/api/v1/accounts/d059ae88-374d-41af-adf3-15321c9c7eb9/brand-analytics/?start_date=2026-02-14&end_date=2026-03-16
Authorization: Bearer amzd_sk_8_YkE9ke-ZmE5UyzB7UvQpryGnyZJqij8PaKP2d1gzc

My ASINs are: [LIST YOUR ASINS HERE]

For each search term:
- Check if any of my ASINs appear in top_asin_1, top_asin_2, or top_asin_3
- If none appear, flag it as a "gap opportunity"
- Sort gap opportunities by search_frequency_rank ascending (lower = more searches)

List the top 20 gap opportunities with their rank and the current top-clicked ASIN.