Research Company Financial Profile

Research a company's financial status including funding history and revenue estimates.


POST/v1/tools/research-company-financial-profile

Endpoint

This endpoint analyzes a company's financial profile using publicly available information and estimates.

Required parameters

  • Name
    company_url
    Type
    string
    Description

    The URL of the company to analyze.

Optional parameters

  • Name
    output_schema
    Type
    object
    Description

    Define the structure of the output you want to receive.

Request

POST
/v1/tools/research-company-financial-profile
curl -X POST https://api.utopianlabs.ai/v1/tools/research-company-financial-profile \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "company_url": "https://luna.ai"
  }'

Response

{
  "output": "**Inferred revenue:**\n$1M-$10M\n\n**Last funding date:**\n2023-11-02\n\n**Total funding rounds:**\npre_seed\n\n**Total funding raised:**\n2500000"
}

Structured Output Example

Get comprehensive financial data in a structured format.

Request with schema

curl -X POST https://api.utopianlabs.ai/v1/tools/research-company-financial-profile \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "company_url": "https://luna.ai",
    "output_schema": {
      "financial_profile": {
        "revenue": "string",
        "funding": {
          "last_funding_date": "string",
          "total_rounds": "string",
          "total_raised": "number"
        }
      }
    }
  }'

Structured response

{
  "output": {
    "financial_profile": {
      "revenue": "$1M-$10M",
      "funding": {
        "last_funding_date": "2023-11-02",
        "total_rounds": "pre_seed",
        "total_raised": 2500000
      }
    }
  }
}

Limitations

  • Private company data often estimated
  • Revenue figures may be projections
  • Not all funding is disclosed
  • Real-time updates not guaranteed

Was this page helpful?