> ## Documentation Index
> Fetch the complete documentation index at: https://docs.riona.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Monetization Analysis

> Get a Monetization Potential Analysis Report for any of the supported platforms: YouTube, TikTok, Instagram, Facebook, Twitter, Telegram.

<Check>Supported Platforms:  <Icon icon="youtube" size={20} />  <Icon icon="tiktok" size={20} />  <Icon icon="instagram" size={20} />  <Icon icon="facebook" size={20} />  <Icon icon="x-twitter" size={20} />  <Icon icon="telegram" size={20} /></Check>
<Callout icon="database" color="#0099FF" iconType="solid">This report provides a compiled data analysis of the past 14 days.</Callout>

<ResponseExample>
  ```json 200 theme={null}
  {
    "CPM_RPM_Table": [
      {
        "Niche_Sub_Niche": "Fashion",
        "CPM_Range": [
          5,
          15
        ],
        "RPM_Range": [
          3,
          10
        ],
        "Top_Countries": [
          "USA",
          "UK",
          "Australia"
        ],
        "Trend_Direction": "upward"
      },
      {
        "Niche_Sub_Niche": "Health & Fitness",
        "CPM_Range": [
          8,
          20
        ],
        "RPM_Range": [
          5,
          15
        ],
        "Top_Countries": [
          "Canada",
          "Germany",
          "France"
        ],
        "Trend_Direction": "stable"
      },
      {
        "Niche_Sub_Niche": "Technology",
        "CPM_Range": [
          10,
          25
        ],
        "RPM_Range": [
          8,
          18
        ],
        "Top_Countries": [
          "India",
          "USA",
          "Japan"
        ],
        "Trend_Direction": "upward"
      }
    ],
    "Sponsorship_Rate_Table": [
      {
        "Content_Type": "Short-form Video",
        "Follower_Tier": "10k-50k",
        "Engagement_Tier": "High",
        "Rate_Range": [
          100,
          500
        ],
        "Example_Campaigns": [
          "Fashion Hauls",
          "Tech Reviews"
        ]
      },
      {
        "Content_Type": "Carousel",
        "Follower_Tier": "50k-100k",
        "Engagement_Tier": "Medium",
        "Rate_Range": [
          500,
          1000
        ],
        "Example_Campaigns": [
          "Product Launches",
          "Event Highlights"
        ]
      },
      {
        "Content_Type": "Live Stream",
        "Follower_Tier": "100k-500k",
        "Engagement_Tier": "High",
        "Rate_Range": [
          2000,
          5000
        ],
        "Example_Campaigns": [
          "Live Product Demos",
          "Q&A Sessions"
        ]
      }
    ],
    "Top_Advertisers_Table": [
      {
        "Industry": "Fashion",
        "Example_Brands": [
          "Gucci",
          "Zara"
        ],
        "Avg_CPM": 18,
        "Demand_Trend": "increasing"
      },
      {
        "Industry": "Tech",
        "Example_Brands": [
          "Apple",
          "Samsung"
        ],
        "Avg_CPM": 22,
        "Demand_Trend": "stable"
      },
      {
        "Industry": "Health & Wellness",
        "Example_Brands": [
          "Nike",
          "Adidas"
        ],
        "Avg_CPM": 15,
        "Demand_Trend": "increasing"
      }
    ],
    "ROI_Forecast_Table": [
      {
        "Campaign_Type": "Sponsored Post",
        "Ad_Spend": 1000,
        "Expected_Reach": 50000,
        "Expected_Conversions": 200,
        "ROI_Score": "medium"
      },
      {
        "Campaign_Type": "Influencer Takeover",
        "Ad_Spend": 5000,
        "Expected_Reach": 200000,
        "Expected_Conversions": 1000,
        "ROI_Score": "high"
      }
    ],
    "Audience_Monetization_Summary": [
      "High purchasing power: millennials",
      "Engagement-to-purchase likelihood: high for tech and fashion",
      "Content types triggering sales: product demos, influencer endorsements",
      "Behavioral trends: increased time spent on platform, preference for video content"
    ],
    "Strategic_Recommendations": [
      "Increase ad spend in trending categories like technology and fashion",
      "Leverage short-form video for higher engagement",
      "Optimize for regional markets showing upward trends",
      "Focus on high-engagement influencers for better ROI"
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/adv-monetization-analysis
openapi: 3.0.3
info:
  title: Riona API Docs
  version: 1.0.0
  contact:
    email: info@riona.ai
    url: https://riona.ai
servers:
  - url: https://riona.ai/api/1.1
security:
  - bearerAuth: []
tags:
  - name: Workflow
    description: Use this to trigger a workflow
  - name: Data
    description: Use this to fetch, modify and delete data
paths:
  /wf/adv-monetization-analysis:
    get:
      tags:
        - Workflow
      description: Triggers the workflow adv-monetization-analysis
      operationId: get_wf_adv-monetization-analysis
      parameters:
        - name: platform
          in: query
          required: true
          description: >-
            Supported Platforms: `youtube` | `tiktok` | `instagram` | `facebook`
            | `twitter` | `telegram`
          schema:
            type: string
        - name: category
          in: query
          required: false
          description: >-
            If you would like to focus the analysis on a specific category or a
            niche add it here.


            Categories Examples: `Fitness & Health` | `Technology` | `Food`

            Niches Examples: `ASMR` | `Shoes` | `Bicycles` | `NFT`
          schema:
            type: string
        - name: api_key
          in: query
          required: true
          description: >-
            This is your account API Key. You can easily locate it in your
            account dashboard.
          schema:
            type: string
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````