Category: Demand Discovery · Execution Model: Deterministic, I/O-Bound, Append-Only
The Trend Scraper Agent collects raw, demand-side activity signals from public platforms and event surfaces to establish real-world market presence for a given query and region. It serves as a ground-truth ingestion layer, capturing observable indicators of consumer interest such as search momentum, social velocity, and live event density. These signals form the empirical foundation for downstream semantic research, trend normalization, and opportunity scoring.
string
— default: fitness
string
— default: Los Angeles County, CA
{
"message": "string",
"record": {
"query": "string",
"region": "string",
"sources": {
"googleTrends": "number",
"tiktokVelocity": "number",
"eventbriteVolume": "number",
"culturalMomentum": "number"
},
"timestamp": "ISODate"
}
}
Writes a new document to the IngestedData collection
If ingestion fails due to database or network errors, the request returns a 500 error and no data is persisted. Partial ingestion is not possible; each request produces at most one record.
{
"persistence": [
"IngestedData"
],
"dataCharacteristics": [
"Append-only records",
"No in-place mutation",
"Multiple records may exist for the same query/region over time"
]
}
curl -X POST https://api.whook.ai/v1/agent/scraper/run \
-H "Content-Type: application/json" \
-d '{
"query": "pilates",
"region": "Los Angeles County, CA"
}'