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

# Earnings & Revenue

> Social Account Revenue Stream Breakdown Report.

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "revenue_table_by_source": [
      {
        "source": "Platform_Ads_Earnings",
        "monthly_earnings": 20000,
        "yearly_earnings": 240000,
        "percentage_of_total": 40
      },
      {
        "source": "Sponsorship_&_Brand_Deals",
        "monthly_earnings": 15000,
        "yearly_earnings": 180000,
        "percentage_of_total": 30
      },
      {
        "source": "Affiliate_Marketing_Income",
        "monthly_earnings": 5000,
        "yearly_earnings": 60000,
        "percentage_of_total": 10
      },
      {
        "source": "Product/Service_Sales",
        "monthly_earnings": 10000,
        "yearly_earnings": 120000,
        "percentage_of_total": 20
      },
      {
        "source": "Memberships/Subscriptions",
        "monthly_earnings": 0,
        "yearly_earnings": 0,
        "percentage_of_total": 0
      }
    ],
    "total_estimated_monthly_revenue": 50000,
    "total_estimated_annual_revenue": 600000,
    "analysis": {
      "Platform_Ads_Earnings": "High due to large subscriber base and consistent viewership.",
      "Sponsorship_&_Brand_Deals": "Frequent collaborations with brands due to niche audience.",
      "Affiliate_Marketing_Income": "Moderate earnings from affiliate links in video descriptions.",
      "Product/Service_Sales": "Revenue from books, courses, or merch related to podcast themes.",
      "Memberships/Subscriptions": "Currently not utilized, potential for future growth."
    },
    "growth_suggestions": {
      "Platform_Ads_Earnings": "Increase video output and optimize SEO to boost views.",
      "Sponsorship_&_Brand_Deals": "Leverage audience insights to target new brands.",
      "Affiliate_Marketing_Income": "Incorporate more affiliate links and highlight them in content.",
      "Product/Service_Sales": "Expand product line and promote through exclusive offers.",
      "Memberships/Subscriptions": "Introduce a membership plan with exclusive content."
    },
    "opportunities_to_add_new_streams": [
      "Memberships/Subscriptions",
      "Live events or workshops",
      "Exclusive content series"
    ],
    "note": "All figures are estimations based on available data and typical industry standards."
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/influencer-earnings-report
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/influencer-earnings-report:
    get:
      tags:
        - Workflow
      description: Triggers the workflow influencer-earnings-report
      operationId: get_wf_influencer-earnings-report
      parameters:
        - name: url
          in: query
          required: true
          description: Profile url
          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

````