GeekBI Temu Image Search
Scope
Image-based public product discovery with product, price, sales, reviews, inventory, supply-price, store, and category fields.
Temu public-market image search only. It does not identify products on other marketplaces or mutate seller data.
Read references/api.md for the authoritative source-derived request and response contract.
Operations
| Script |
NexScope route |
geekbi_temu_goods_image_search.py |
POST /api/v1/tools/research/geekbi/temu/goodsImageSearch |
upload_image.py |
POST /api/v1/tools/research/oss/file/presignedPut → signed PUT → remove URL query parameters |
Authentication and safety
- Set
NEXSCOPE_PROXY_BASE and NEXSCOPE_API_KEY. Send the NexScope key as Authorization: Bearer <key>.
- No marketplace account authorization is required; these operations read public-market data.
- Provider credentials and upstream tokens remain backend-owned. Never accept, print, or persist them.
- Treat HTTP 401 as NexScope authentication failure and HTTP 402 as insufficient NexScope credits.
- Do not substitute another account, market, region, creator, product, or operation after an authorization or ambiguous network failure.
- This operation consumes credits. Preserve
X-Cost-Token and X-Cost-Credit from response headers as server-reported billing metadata.
Workflow
- Identify the exact operation, market/account context, filters, dates, pagination, and requested output.
- Validate required fields, types, enums, ranges, and operation-specific limits against
references/api.md before any request.
- Explain that additional pages, markets, or operations may consume more credits and obtain approval before a paid call.
- Run only the selected entry script, for example:
python scripts/geekbi_temu_goods_image_search.py '<JSON parameters>' --no-cache when the script supports that flag.
- Preserve the full response under
nexscope/<date>/<session>/data; return a concise summary and the saved path.
- On an ambiguous timeout or upstream failure, do not retry automatically. Report the trace ID and reconcile state first.
Output rules
- Distinguish the NexScope transport envelope from the nested business response.
- Report only returned facts. Preserve absent values as unknown and keep provider-specific metric definitions intact.
- Never expose API keys, provider tokens, presigned URL query strings, internal account records, or raw secrets.
- Do not submit feedback or make any unrelated external mutation unless the user explicitly requests it.
Authentication
Set the NEXSCOPE_API_KEY environment variable. If credentials are missing or expire, visit https://www.nexscope.ai/help/skills-external-access?co-from=skillNS to top up credits.
1---2name: ecommerce-geekbi-temu-search-by-image3description: Find visually similar products in the public Temu marketplace through GeekBI and NexScope.4---56# GeekBI Temu Image Search78## Scope910Image-based public product discovery with product, price, sales, reviews, inventory, supply-price, store, and category fields.1112Temu public-market image search only. It does not identify products on other marketplaces or mutate seller data.1314Read [references/api.md](references/api.md) for the authoritative source-derived request and response contract.1516## Operations1718| Script | NexScope route |19|---|---|20| `geekbi_temu_goods_image_search.py` | `POST /api/v1/tools/research/geekbi/temu/goodsImageSearch` |21| `upload_image.py` | `POST /api/v1/tools/research/oss/file/presignedPut` → signed `PUT` → remove URL query parameters |2223## Authentication and safety2425- Set `NEXSCOPE_PROXY_BASE` and `NEXSCOPE_API_KEY`. Send the NexScope key as `Authorization: Bearer <key>`.26- No marketplace account authorization is required; these operations read public-market data.27- Provider credentials and upstream tokens remain backend-owned. Never accept, print, or persist them.28- Treat HTTP 401 as NexScope authentication failure and HTTP 402 as insufficient NexScope credits.29- Do not substitute another account, market, region, creator, product, or operation after an authorization or ambiguous network failure.30- This operation consumes credits. Preserve `X-Cost-Token` and `X-Cost-Credit` from response headers as server-reported billing metadata.3132## Workflow33341. Identify the exact operation, market/account context, filters, dates, pagination, and requested output.352. Validate required fields, types, enums, ranges, and operation-specific limits against `references/api.md` before any request.363. Explain that additional pages, markets, or operations may consume more credits and obtain approval before a paid call.374. Run only the selected entry script, for example: `python scripts/geekbi_temu_goods_image_search.py '<JSON parameters>' --no-cache` when the script supports that flag.385. Preserve the full response under `nexscope/<date>/<session>/data`; return a concise summary and the saved path.396. On an ambiguous timeout or upstream failure, do not retry automatically. Report the trace ID and reconcile state first.4041## Output rules4243- Distinguish the NexScope transport envelope from the nested business response.44- Report only returned facts. Preserve absent values as unknown and keep provider-specific metric definitions intact.45- Never expose API keys, provider tokens, presigned URL query strings, internal account records, or raw secrets.46- Do not submit feedback or make any unrelated external mutation unless the user explicitly requests it.474849## Authentication5051Set the `NEXSCOPE_API_KEY` environment variable. If credentials are missing or expire, visit [https://www.nexscope.ai/help/skills-external-access?co-from=skillNS](https://www.nexscope.ai/help/skills-external-access?co-from=skillNS) to top up credits.