Get Company News

Find recent news, press releases, and media coverage about a company from multiple news sources and the company's own communications.


POST/v1/tools/get-company-news

Endpoint

This endpoint retrieves recent news and updates about a company from various sources.

Required parameters

  • Name
    company_name
    Type
    string
    Description

    The name of the company to research.

  • Name
    company_url
    Type
    string
    Description

    The website URL of the company.

  • Name
    company_description_summary
    Type
    string
    Description

    A one-line description of the company's activities. If you don't know what the company does, use the research-website tool first.

Optional parameters

  • Name
    output_schema
    Type
    object
    Description

    Define the structure of the output you want to receive.

Request

POST
/v1/tools/get-company-news
curl -X POST https://api.utopianlabs.ai/v1/tools/get-company-news \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "company_name": "OpenAI",
    "company_url": "https://openai.com",
    "company_description_summary": "AI research company developing artificial general intelligence"
  }'

Response

{
  "output": "Recent OpenAI news includes: 1) Launch of GPT-4 Turbo with 128K context window and improved performance (November 2023). 2) Introduction of custom GPTs allowing users to create specialized AI assistants without coding. 3) Partnership announcements with Microsoft expanding Azure OpenAI services. 4) New safety research initiatives including red teaming and alignment work. 5) Developer conference showcasing new APIs and reduced pricing. The company continues to focus on advancing AI capabilities while addressing safety concerns and expanding developer tools."
}

Structured Output Example

Extract news in a structured format for easy processing and analysis.

Request with schema

curl -X POST https://api.utopianlabs.ai/v1/tools/get-company-news \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "company_name": "Tesla",
    "company_url": "https://tesla.com",
    "company_description_summary": "Electric vehicle and clean energy company",
    "output_schema": {
      "recent_news": [{
        "headline": "string",
        "date": "string",
        "category": "string",
        "summary": "string",
        "impact": "string"
      }],
      "key_themes": ["string"]
    }
  }'

Structured response

{
  "output": {
    "recent_news": [
      {
        "headline": "Tesla Reports Record Q4 Deliveries",
        "date": "January 2024",
        "category": "Financial",
        "summary": "Tesla delivered 484,507 vehicles in Q4 2023, beating analyst expectations",
        "impact": "Positive - Stock price increased 5%"
      },
      {
        "headline": "Cybertruck Production Ramps Up",
        "date": "December 2023",
        "category": "Product",
        "summary": "Tesla begins mass production of Cybertruck at Gigafactory Texas",
        "impact": "Neutral - Meeting production timeline"
      },
      {
        "headline": "New Supercharger Network Expansion",
        "date": "January 2024",
        "category": "Infrastructure",
        "summary": "Tesla announces 10,000 new Supercharger stations globally",
        "impact": "Positive - Strengthens charging infrastructure"
      }
    ],
    "key_themes": [
      "Production scaling",
      "Market expansion",
      "Technology innovation",
      "Sustainability initiatives",
      "Autonomous driving progress"
    ]
  }
}

Limitations

  • Limited to publicly available news
  • May not capture all regional or niche publications
  • Quality depends on company's media presence
  • Cannot access paywalled content

Was this page helpful?