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

# Jobs Market Analysis

> Unlock advanced market intelligence including demand analysis, competition breakdown, top skills, salary trends, future projections, and strategic insights.

<ResponseExample>
  ```json 200 theme={null}

  {
    "job_title": "accountant",
    "city": "New york",
    "market_demand_analysis": {
      "demand_level": "Very High",
      "estimated_monthly_job_postings": 3500,
      "annual_growth_rate_percent": 4.5,
      "hiring_trend": "Growing",
      "talent_shortage_level": "High"
    },
    "salary_insights": {
      "average_salary_local_currency": 78000,
      "entry_level_salary": 55000,
      "mid_level_salary": 80000,
      "senior_level_salary": 110000,
      "salary_growth_rate_percent": 3.5
    },
    "competition_analysis": {
      "estimated_active_candidates": 15000,
      "jobs_to_candidate_ratio": 0.23,
      "market_competitiveness": "Highly Competitive"
    },
    "industry_breakdown": [
      {
        "industry_name": "Financial Services",
        "percentage_of_total_demand": 40
      },
      {
        "industry_name": "Public Accounting Firms",
        "percentage_of_total_demand": 25
      },
      {
        "industry_name": "Corporations (Various sectors)",
        "percentage_of_total_demand": 20
      },
      {
        "industry_name": "Government and Public Administration",
        "percentage_of_total_demand": 10
      },
      {
        "industry_name": "Non-Profit Organizations",
        "percentage_of_total_demand": 5
      }
    ],
    "top_required_skills": [
      {
        "skill_name": "Financial Reporting",
        "importance_score_1_to_10": 9
      },
      {
        "skill_name": "Tax Preparation and Compliance",
        "importance_score_1_to_10": 8
      },
      {
        "skill_name": "GAAP Knowledge",
        "importance_score_1_to_10": 9
      },
      {
        "skill_name": "Microsoft Excel",
        "importance_score_1_to_10": 8
      },
      {
        "skill_name": "Analytical Thinking",
        "importance_score_1_to_10": 7
      },
      {
        "skill_name": "Accounting Software (e.g., QuickBooks, SAP)",
        "importance_score_1_to_10": 8
      }
    ],
    "emerging_skills": [
      {
        "skill_name": "Data Analytics",
        "growth_trend": "Fast Growing"
      },
      {
        "skill_name": "Automation Tools (e.g., RPA)",
        "growth_trend": "Emerging"
      },
      {
        "skill_name": "Blockchain Accounting",
        "growth_trend": "Emerging"
      },
      {
        "skill_name": "Cloud Accounting Platforms",
        "growth_trend": "Fast Growing"
      }
    ],
    "employer_profile": {
      "top_hiring_company_types": [
        "Public Accounting Firms",
        "Financial Institutions",
        "Large Multinational Corporations",
        "Government Agencies"
      ],
      "average_company_size_hiring": "Mixed",
      "remote_opportunities_percent": 35
    },
    "future_outlook": {
      "5_year_projection_growth_percent": 20,
      "automation_risk_level": "Medium",
      "market_stability_score_1_to_10": 8
    },
    "economic_factors": {
      "key_growth_drivers": [
        "Strong Financial Sector Presence",
        "Regulatory Compliance Requirements",
        "Increased Corporate Reporting Standards",
        "Growing Number of Startups and SMEs"
      ],
      "local_market_challenges": [
        "High Cost of Living Affecting Salary Expectations",
        "Competition from Automated Accounting Technologies"
      ],
      "regulatory_or_policy_impact": "Ongoing tax code changes and financial regulations increase demand for skilled accountants."
    },
    "actionable_insights": {
      "for_job_seekers": [
        "Enhance skills in data analytics and cloud-based accounting software.",
        "Obtain certifications like CPA to improve marketability.",
        "Leverage networking within financial and large corporate sectors."
      ],
      "for_employers": [
        "Invest in training for emerging accounting technologies.",
        "Offer competitive salaries adjusted for New York living costs.",
        "Promote flexible and remote work options to attract talent."
      ],
      "for_investors_or_training_providers": [
        "Develop courses targeting advanced accounting technologies and data analytics.",
        "Focus on upskilling accountants for compliance and regulatory changes.",
        "Invest in platforms that integrate automation with accounting practices."
      ]
    },
    "confidence_score_percent": 90
  }

  ```
</ResponseExample>


## OpenAPI

````yaml api-reference/openapi-3.0.json get /wf/jobs-market-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/jobs-market-analysis:
    get:
      tags:
        - Workflow
      description: Triggers the workflow jobs-market-analysis
      operationId: get_wf_jobs-market-analysis
      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
        - name: job_title
          in: query
          required: true
          description: Enter the job title you want to get report for
          schema:
            type: string
            default: Accountant
        - name: city
          in: query
          required: true
          description: >-
            City name used for this report, it accepts Free-form city name like
            `NY` or `New York`.
          schema:
            type: string
            default: New York
        - name: country
          in: query
          description: >-
            Country code used for this report, Support all countries, it accepts
            two letter format like `us` `uk` `fr`. [Country
            List](/api-reference/other/countries)
          schema:
            type: string
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````