> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neuralverge.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Run Crunchbase Company

> Fetches structured company data from a Crunchbase company URL.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-crunchbase-company
openapi: 3.0.0
info:
  title: NeuralVerge API
  version: 1.0.0
  description: >-
    NeuralVerge API for AI research workflows, search, extraction, and
    structured data source execution.
servers:
  - url: https://api.neuralverge.ai
    description: NeuralVerge API
security:
  - BearerAuth: []
tags:
  - name: AI Research
    description: Research workflows, search execution, and session tracking.
  - name: AI Extract
    description: Schema-driven extraction workflows.
  - name: AI Agents
    description: Reusable saved agents executed through the API.
  - name: Data Sources
    description: Focused provider lookups for LinkedIn, email, phone, and company data.
paths:
  /functions/v1/run-crunchbase-company:
    post:
      tags:
        - Data Sources
      summary: Run Crunchbase Company
      description: Fetches structured company data from a Crunchbase company URL.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - url
              properties:
                url:
                  type: string
            example:
              url: https://www.crunchbase.com/organization/openai
      responses:
        '200':
          description: Lookup completed.
          content:
            application/json:
              example:
                session_id: bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb
                kind: crunchbase_company
                url: https://www.crunchbase.com/organization/openai
                human: >-
                  # Crunchbase company


                  - **Crunchbase URL:**
                  https://www.crunchbase.com/organization/openai

                  - **Company:** OpenAI

                  - **Website:** https://openai.com

                  - **Location:** San Francisco, California, United States

                  - **Founded:** 2015

                  - **Employees:** 1001-5000

                  - **Industries:** Artificial Intelligence, Machine Learning

                  - **Funding:** $11.3B

                  - **Records returned:** 1


                  ## Summary


                  AI research and deployment company.
                machine:
                  total_items: 1
                  first_item:
                    name: OpenAI
                    website: https://openai.com
                    location: San Francisco, California, United States
                    founded: '2015'
                    employees: 1001-5000
                    industries:
                      - Artificial Intelligence
                      - Machine Learning
                    totalFunding: $11.3B
                    description: AI research and deployment company.
                  items:
                    - name: OpenAI
                      website: https://openai.com
                total_points: 15
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '402':
          description: Payment Required
        '500':
          description: Internal Error
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````