Evidence
Get raw SERP evidence, citation data, technical audit findings, and competitive signals collected during pipeline runs.
Returns the typed evidence objects collected during the pipeline. Every opportunity, insight, and leverage score traces back to this evidence layer — it is the full audit trail for anything the pipeline produces.
Path parameters
brand_idstringrequiredThe brand UUID.
Query parameters
family_idstringFilter by topic family UUID.
typestringFilter by evidence type. Supported values:
serp_pattern— organic SERP competitive patternsgap_signal— missing topic or content gappain_signal— user pain points extracted from SERPscompetitive_pattern— competitor domain patternscontent_pattern— content-type patterns across a familyllm_gap— LLM citation gapllm_citation— LLM citation eventtechnical_issue— technical audit finding
run_idstringPin to a specific pipeline run. Defaults to the latest completed run.
Response
{
"brand_id": "brand-uuid",
"total": 156,
"evidence": [
{
"evidence_id": "ev-uuid",
"brand_id": "brand-uuid",
"run_id": "run-uuid",
"family_id": "family-uuid",
"family_name": "Marketing Automation",
"evidence_type": "gap_signal",
"signal": {
"brand_position": "absent",
"competitor_domains": ["hubspot.com", "mailchimp.com"],
"pattern_strength": 0.92
},
"sources": [
{
"domain": "google.com",
"query": "best marketing automation tools",
"position": null
}
],
"created_at": "2026-04-08T12:00:00Z"
}
]
}
The signal and sources shapes are evidence-type-specific and may add or remove keys without notice — treat the inner objects as advisory and tolerate unknown keys.
Single-evidence lookup
Fetch a single evidence object by ID:
curl -H "X-API-Key: $BM_API_KEY" \
https://api.boringmarketing.com/brands/$BRAND_ID/evidence/$EVIDENCE_ID
Example
curl -H "X-API-Key: $BM_API_KEY" \
"https://api.boringmarketing.com/brands/$BRAND_ID/evidence?family_id=family-uuid&type=gap_signal"
Every opportunity has a contributing_signals array that references these evidence objects. Cross-reference to see exactly which SERP, citation, or technical finding produced a given recommendation.