US Brand Action Queue
Pricing
Pay per event
Go to Apify Store
US Brand Action Queue
Turn verified US brand signals into one deterministic, prioritized action queue with evidence, ownership, urgency, and optional BYOK explanations.
US Brand Action Queue
Pricing
Pay per event
Turn verified US brand signals into one deterministic, prioritized action queue with evidence, ownership, urgency, and optional BYOK explanations.
You can access the US Brand Action Queue programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "scoredAt": "2026-08-05T00:00:00Z",10 "requestId": "action-queue-20260804-001",11 "items": [12 {13 "entityId": "nike.com",14 "brandName": "Nike",15 "legalName": "Nike, Inc.",16 "domain": "nike.com",17 "ticker": "NKE",18 "cik": None,19 "aliases": ["Nike, Inc."],20 "country": "US",21 "sourceEntityIds": ["us-dtc-product-launch-monitor:nike.com"],22 "eventType": "product_launch",23 "eventId": "fixture-launch-001",24 "observedAt": "2026-08-04T10:00:00Z",25 "effectiveAt": "2026-08-04T10:00:00Z",26 "sourceName": "prefill_fixture",27 "sourceUrl": "https://www.nike.com/",28 "sourceRecordId": "fixture-launch-001",29 "evidence": {30 "facts": {31 "productName": "Fixture running shoe",32 "price": 120,33 },34 "excerpt": "Synthetic Store prefill evidence; not a live fetch",35 "additionalUrls": [],36 },37 "confidence": 0.96,38 "severity": "high",39 "state": "active",40 "dedupeKey": "prefill_fixture|nike.com|product_launch|fixture-launch-001",41 "attribution": {42 "status": "verified_by_source",43 "proofType": "exact-domain",44 "proofValue": "nike.com",45 "sourceEntityId": "us-dtc-product-launch-monitor:nike.com",46 },47 "owner": {48 "ownerType": "team",49 "ownerId": "merchandising",50 "label": "Merchandising",51 "source": "customer",52 },53 "analysisStatus": "not_requested",54 "demoFixture": True,55 },56 {57 "entityId": "nike.com",58 "brandName": "Nike",59 "legalName": "Nike, Inc.",60 "domain": "nike.com",61 "ticker": "NKE",62 "cik": None,63 "aliases": ["Nike, Inc."],64 "country": "US",65 "sourceEntityIds": ["us-dtc-product-launch-monitor:nike.com"],66 "eventType": "product_launch",67 "eventId": "fixture-launch-001",68 "observedAt": "2026-08-04T10:00:00Z",69 "effectiveAt": "2026-08-04T10:00:00Z",70 "sourceName": "prefill_fixture",71 "sourceUrl": "https://www.nike.com/",72 "sourceRecordId": "fixture-launch-001",73 "evidence": {74 "facts": {75 "productName": "Fixture running shoe",76 "price": 120,77 },78 "excerpt": "Synthetic Store prefill evidence; not a live fetch",79 "additionalUrls": [],80 },81 "confidence": 0.96,82 "severity": "high",83 "state": "active",84 "dedupeKey": "prefill_fixture|nike.com|product_launch|fixture-launch-001",85 "attribution": {86 "status": "verified_by_source",87 "proofType": "exact-domain",88 "proofValue": "nike.com",89 "sourceEntityId": "us-dtc-product-launch-monitor:nike.com",90 },91 "owner": {92 "ownerType": "team",93 "ownerId": "merchandising",94 "label": "Merchandising",95 "source": "customer",96 },97 "analysisStatus": "not_requested",98 "demoFixture": True,99 },100 ],101}102
103# Run the Actor and wait for it to finish104run = client.actor("zinin/us-brand-action-queue").call(run_input=run_input)105
106# Fetch and print Actor results from the run's dataset (if there are any)107print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])108for item in client.dataset(run["defaultDatasetId"]).iterate_items():109 print(item)110
111# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use US Brand Action Queue API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: