Skip to main content
GET
/
api
/
search
Search companies and investors by name
curl --request GET \
  --url https://api-next.dealroom.co/api/search \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "companies": [
      {
        "id": 123,
        "name": "<string>",
        "tagline": "<string>",
        "image": "<string>",
        "is_unicorn": true
      }
    ],
    "investors": [
      {
        "id": 123,
        "name": "<string>",
        "tagline": "<string>",
        "image": "<string>",
        "investor_rank": 123
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.beta.dealroom.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Auth0 JWT access token. Paste a token obtained from your preferred OAuth2 flow. For machine-to-machine use, the OAuth2 client_credentials scheme below can mint a token directly from your client_id / client_secret inside the Swagger UI Authorize dialog.

Query Parameters

q
string
required

Search term (minimum 2 characters)

Minimum string length: 2
type
enum<string>
default:all

Filter results by type (default: all)

Available options:
companies,
investors,
all
limit
number
default:5

Maximum results per category (default 5, max 20)

Required range: 1 <= x <= 20

Response

Search results grouped by category

data
object
required