Skip to main content
POST
Financial Analysis

How It Works

This endpoint uses async job processing for AI-powered financial analysis:
  1. Submit Request: POST with stock symbol as query parameter
  2. Receive Job ID: Get a job ID and polling URL immediately
  3. Poll for Status: Check /v1/jobs/{job_id} until status is completed
  4. Get Analysis: The completed job contains comprehensive financial analysis
Analysis typically takes 2-5 minutes. Provides comprehensive business strategy, accounting quality, and financial performance analysis.

Query Parameters

Response (202 Accepted)

Completed Response

When the job completes, GET /v1/jobs/{job_id} returns:
Results are cached for 14 days. Subsequent requests for the same symbol will return cached analysis instantly.

Analysis Framework

The analysis covers the following areas:

Example: Polling for Results

Authorizations

Authorization
string
header
required

API key passed as Bearer token

Query Parameters

symbol
string
required

Stock symbol (e.g., AAPL.O for Apple Inc)

Response

Job created successfully. Poll the check_url for results.

job_id
string

Unique job identifier

status
enum<string>

Initial job status

Available options:
pending
symbol
string

Stock symbol being analyzed

check_url
string

URL to poll for job status

estimated_duration_seconds
integer

Estimated processing time in seconds

message
string

Human-readable status message