Skip to main content
GET
/
api
/
search
Search companies and investors by name
curl --request GET \
  --url https://api.example.com/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
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

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