Deep Dive into AI-Assisted Content Insights

Translate content into actionable insights. Understand not just how your content performs, but also the underlying user emotions and intentions while consuming it. Let's guide you on leveraging the OpenDream API for this purpose.

Content Analysis Model

A model designed to translate content streams into quantifiable metrics, capturing emotions, intentions, and brand interactions.

Attributes

  • Name
    contentID
    Type
    string
    Description

    Unique identifier for the content stream.

  • Name
    timestamp
    Type
    timestamp
    Description

    Time range for the analysis.

  • Name
    analysis
    Type
    object
    Description

    Detailed metrics derived from the content, from review predictions to brand interactions.

  • Name
    link
    Type
    string
    Description

    Direct URL to access in-depth analytics.


GET/opendream/v1/content_analysis.json

Retrieve In-depth Content Analysis

Invoke this endpoint to fetch AI-driven analytics on specific content. Specify contentID, timestamp, and desired metrics.

Parameters

  • Name
    contentID
    Type
    string
    Description

    Identifier for the content stream.

  • Name
    timestamp
    Type
    timestamp
    Description

    Analysis time range.

Request

GET
/opendream/v1/entertainment_predictions.json
curl -G https://api.opendream.org/opendream/v1/entertainment_predictions.json \
  -H "Authorization: Bearer {token}" \
  -d type=Movie \
  -d records=10 \
  -d categories=movie,game \
  -d quality=high

In-depth Response

{
  "contentID": "movie12345",
  "timestamp": "2023-11-10T12:00:00Z",
  "analysis": {
    "reviewPredictions": {
      "criticReview": {
        "score": 88, // Out of 100
        "confidence": 0.92
      },
      "userReview": {
        "score": 85, // Out of 100
        "confidence": 0.90
      }
    },
    "productPlacementAttention": {
      "product": "Lightsaber",
      "attentionScore": 0.85,
      "purchaseIntention": "High"
    },
    "brandAttention": {
      "brand": "Star Wars",
      "attentionScore": 0.9
    },
    "actorAttention": {
      "Luke Skywalker": 0.28, // 28% attention compared to others
      "Leia Skywalker": 0.25,
      "Han Solo": 0.22,
      "R2D2": 0.12,
      "Obi Wan Kenobi": 0.08,
      "C3P0": 0.05
    },
    "timePeriodAnalysis": {
      "0-30min": {
        "boredom": 0.1,
        "interest": 0.9
      },
      "30-60min": {
        "boredom": 0.15,
        "interest": 0.85
      }
    }
  },
  "link": "https://opendream.org/data/content_analysis/movie12345"
}

Was this page helpful?