> ## 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.

# Niche Insights

> Get Channel

<ResponseExample>
  ```json 200 theme={null}
  {
    "lastUpdate": "12-09-2025",
    "niches": [
      {
        "rank": 1,
        "niche": "Make Money Online",
        "estAvgCPM": 14,
        "lowAvgCPM": 12,
        "highAvgCPM": 25,
        "currencyCPM": "USD"
      },
      {
        "rank": 2,
        "niche": "Digital Marketing / B2B / Business",
        "estAvgCPM": 13,
        "lowAvgCPM": 15,
        "highAvgCPM": 30,
        "currencyCPM": "USD"
      },
      {
        "rank": 3,
        "niche": "Personal Finance & Investing",
        "estAvgCPM": 12,
        "lowAvgCPM": 10,
        "highAvgCPM": 25,
        "currencyCPM": "USD"
      },
      {
        "rank": 4,
        "niche": "Tech Reviews / Gadgets / Automotive",
        "estAvgCPM": 11,
        "lowAvgCPM": 10,
        "highAvgCPM": 20,
        "currencyCPM": "USD"
      },
      {
        "rank": 5,
        "niche": "Real Estate / Property",
        "estAvgCPM": 9,
        "lowAvgCPM": 8,
        "highAvgCPM": 20,
        "currencyCPM": "USD"
      },
      {
        "rank": 6,
        "niche": "Health & Fitness / Wellness",
        "estAvgCPM": 7,
        "lowAvgCPM": 7,
        "highAvgCPM": 20,
        "currencyCPM": "USD"
      },
      {
        "rank": 7,
        "niche": "Educational / How-To",
        "estAvgCPM": 9,
        "lowAvgCPM": 7,
        "highAvgCPM": 15,
        "currencyCPM": "USD"
      },
      {
        "rank": 8,
        "niche": "Luxury Lifestyle",
        "estAvgCPM": 16,
        "lowAvgCPM": 16,
        "highAvgCPM": 20,
        "currencyCPM": "USD"
      },
      {
        "rank": 9,
        "niche": "Legal / Insurance Advice",
        "estAvgCPM": 12,
        "lowAvgCPM": 10,
        "highAvgCPM": 20,
        "currencyCPM": "USD"
      },
      {
        "rank": 10,
        "niche": "Beauty & Fashion",
        "estAvgCPM": 5,
        "lowAvgCPM": 5,
        "highAvgCPM": 18,
        "currencyCPM": "USD"
      },
      {
        "rank": 11,
        "niche": "DIY & Crafts",
        "estAvgCPM": 6,
        "lowAvgCPM": 5,
        "highAvgCPM": 12,
        "currencyCPM": "USD"
      },
      {
        "rank": 12,
        "niche": "ASMR",
        "estAvgCPM": 4,
        "lowAvgCPM": 7,
        "highAvgCPM": 15,
        "currencyCPM": "USD"
      },
      {
        "rank": 13,
        "niche": "Lifestyle / Travel / Vlogging",
        "estAvgCPM": 6,
        "lowAvgCPM": 5,
        "highAvgCPM": 10,
        "currencyCPM": "USD"
      },
      {
        "rank": 14,
        "niche": "Cooking / Food",
        "estAvgCPM": 3,
        "lowAvgCPM": 5,
        "highAvgCPM": 10,
        "currencyCPM": "USD"
      },
      {
        "rank": 15,
        "niche": "Fitness & Bodybuilding",
        "estAvgCPM": 7,
        "lowAvgCPM": 7,
        "highAvgCPM": 15,
        "currencyCPM": "USD"
      },
      {
        "rank": 16,
        "niche": "Gaming",
        "estAvgCPM": 4,
        "lowAvgCPM": 4,
        "highAvgCPM": 15,
        "currencyCPM": "USD"
      },
      {
        "rank": 17,
        "niche": "Comedy & Humor",
        "estAvgCPM": 1,
        "lowAvgCPM": 0.5,
        "highAvgCPM": 1,
        "currencyCPM": "USD"
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/youtube-niches-insight
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/youtube-niches-insight:
    get:
      tags:
        - Workflow
      description: Triggers the workflow youtube-niches-insight
      operationId: get_wf_youtube-niches-insight
      parameters:
        - 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

````