admapixlisted
Install: claude install-skill fly0pants/admapix
# AdMapix Raw Data Search
Use this skill to fetch raw competitor ad creative data from AdMapix.
Return structured data from the API. Presentation, message-send, autonomous research, summary, insight, recommendation, and dashboard workflows are out of scope.
## Data Source
Prefer the `admapix.search_creatives` MCP tool when it is available. If no MCP tool is available, call the API directly:
```bash
curl -s -X POST "https://api.admapix.com/api/data/search" \
-H "X-API-Key: $ADMAPIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content_type":"creative","keyword":"puzzle game","page":1,"page_size":20,"sort_field":"3","sort_rule":"desc"}'
```
Never print or expose the API key.
## Request Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| keyword | string | "" | Search keyword: app name, ad copy, advertiser, product, or category |
| creative_team | string[] | omit | Creative type codes, e.g. `["010"]` for video |
| country_ids | string[] | omit | Country codes, e.g. `["US","JP"]` |
| start_date | string | API default | Start date, `YYYY-MM-DD` |
| end_date | string | API default | End date, `YYYY-MM-DD` |
| sort_field | string | `"3"` | `"3"` first seen, `"4"` days active, `"11"` relevance, `"15"` impressions |
| sort_rule | string | `"desc"` | `"desc"` or `"asc"` |
| page | int | `1` | Page number, starting from 1 |
| page_size | int | `20` | Results per page, 1-60 |
| trade_level1 | string[] | omit | Industry category IDs |
| conte