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

# Conversion & Forecast

> Analyze and forecast the conversion and sales potential for influencers.

<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}
  {
    "summary_table": {
      "conversion_potential_rating": 8,
      "estimated_campaign_reach": 500000,
      "ctr": 0.05,
      "sales_forecast": 2500,
      "revenue_forecast": 125000,
      "roi_rating": 7
    },
    "detailed_analysis": {
      "conversion_potential_rating": "Jay Shetty's podcast has a highly engaged audience, with a strong trust factor due to his motivational and self-help content. His followers are likely to have a high purchasing intent, especially for products related to personal development and wellness.",
      "historical_conversion_indicators": {
        "past_affiliate_link_ctr": 0.04,
        "swipe_up_rates": 0.03,
        "promo_code_usage": "high, especially during targeted campaigns",
        "sales_performance": "consistent with spikes during major content releases"
      },
      "audience_purchasing_power": {
        "demographics": "Primarily aged 25-44, with a balanced gender distribution.",
        "income_indicators": "Middle to upper-middle class, with disposable income for self-improvement products.",
        "buying_behaviors": [
          "interested in self-help books",
          "motivational courses",
          "wellness products"
        ]
      },
      "estimated_campaign_reach": "Based on Jay Shetty's current subscriber count and average video views, a single sponsored post/video can reach approximately 500,000 impressions.",
      "estimated_sales_volume_and_revenue": {
        "engagement_rate": 0.1,
        "niche_specific_conversion_rate": 0.05,
        "average_order_value": 50,
        "estimated_sales_volume": 2500,
        "estimated_revenue": 125000
      },
      "best_selling_product_categories": [
        "self-help books",
        "motivational courses",
        "wellness products",
        "mindfulness apps"
      ],
      "roi_potential": "With a high engagement rate and a niche audience interested in personal development, the ROI for a 1-month campaign is expected to be favorable. The ROI rating is 7 out of 10.",
      "conversion_optimization_suggestions": [
        "Use personal storytelling to connect with the audience.",
        "Incorporate clear and compelling call-to-actions.",
        "Offer exclusive promo codes or limited-time offers.",
        "Leverage testimonials or success stories from past customers."
      ]
    },
    "final_recommendation": "proceed"
  }
  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/influencer-forecast
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-forecast:
    get:
      tags:
        - Workflow
      description: Triggers the workflow influencer-forecast
      operationId: get_wf_influencer-forecast
      parameters:
        - name: url
          in: query
          required: true
          description: Profile url
          schema:
            type: string
        - name: product
          in: query
          required: false
          description: Product/Service to Promote
          schema:
            type: string
        - name: goal
          in: query
          required: false
          description: |-
            Campaign Goal.
             Examples: `direct sales`, `affiliate marketing` , `lead generation` 
            You can type any goal you have.
          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

````