# Content Analysis (/docs/content_analysis)



Content Analysis [#content-analysis]

Web-wide **brand listening + sentiment intelligence**, powered by DataForSEO's citation database. Search every web page (news, blogs, ecommerce, message boards, organization sites) that mentions a keyword, each scored on a 6-axis emotional model (anger, happiness, love, sadness, share, fun) plus positive/negative/neutral probabilities — then roll it up into totals, top domains, rating histograms, and sentiment-over-time trends.

This is **page-level web citation data, not native platform posts** — it complements the per-platform scrapers with cross-web sentiment you can't get from any single social API.

Base URL: `/v1/content_analysis/...`

Getting Started [#getting-started]

Every endpoint is a `GET` with `x-api-key` auth. Start with `search` for the raw mention feed, or `summary` for a one-call roll-up:

```bash
curl "https://www.socialcrawl.dev/v1/content_analysis/summary?keyword=openai" \
  -H "x-api-key: $SOCIALCRAWL_API_KEY"
```

Narrow any keyword query to a page type with `page_type` (`news`, `blogs`, `ecommerce`, `message-boards`, `organization`), and page the `search` feed with the `cursor` returned as `next_cursor`. Sentiment values are DataForSEO's model-derived NLP, passed through verbatim.

Endpoints [#endpoints]

<PlatformEndpoints platform="content_analysis" />

Notes [#notes]

* All endpoints use `GET` method with query parameters
* Authentication via `x-api-key` header
* Responses follow the unified SocialCrawl schema
