Skip to main content
GET
/
signals
/
investors
Get Investor Data
curl --request GET \
  --url https://www.trysignalbase.com/api/v2/signals/investors \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "name": "Sequoia Capital",
      "type": "vc",
      "linkedinUrl": "linkedin.com/company/sequoia-capital",
      "website": "https://www.sequoiacap.com",
      "logoUrl": "https://images.trysignalbase.com/sequoia.png",
      "countries": "[\"US\",\"IN\",\"CN\"]",
      "ticketSizeMin": 1000000,
      "ticketSizeMax": 100000000,
      "headquarters": "Menlo Park, California",
      "createdAt": "2025-01-15T10:00:00.000Z",
      "isFreeAccess": true
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "name": "Y Combinator",
      "type": "accelerator",
      "linkedinUrl": "linkedin.com/company/y-combinator",
      "website": "https://www.ycombinator.com",
      "logoUrl": "https://images.trysignalbase.com/ycombinator.png",
      "countries": "[\"US\"]",
      "ticketSizeMin": 125000,
      "ticketSizeMax": 500000,
      "headquarters": "Mountain View, California",
      "createdAt": "2025-01-10T08:00:00.000Z",
      "isFreeAccess": true
    }
  ],
  "pagination": {
    "currentPage": 1,
    "totalPages": 50,
    "totalCount": 1000,
    "hasNextPage": true,
    "hasPreviousPage": false
  },
  "meta": {
    "endpoint": "signals.investors",
    "creditsUsed": 1,
    "creditsRemaining": 999
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.trysignalbase.com/llms.txt

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

Authorizations

Authorization
string
header
required

API key authentication. Include as Bearer token in Authorization header.

Query Parameters

page
integer
default:1

Page number for pagination

Required range: x >= 1
limit
integer
default:20

Number of results per page (maximum 100)

Required range: 1 <= x <= 100
dateFrom
string<date>

Filter by created date from (ISO 8601 format: YYYY-MM-DD)

dateTo
string<date>

Filter by created date to (ISO 8601 format: YYYY-MM-DD)

date_preset
enum<string>

Relative date shorthand. Takes precedence over dateFrom/dateTo.

Available options:
today,
yesterday,
last_7d,
last_14d,
last_30d,
last_60d,
last_90d,
last_6m,
last_1y,
last_2y,
this_week,
this_month,
this_quarter,
this_year,
last_week,
last_month,
last_quarter,
last_year

Free-text search across investor name and type

countries
string

Comma-separated list of country codes to filter by (matches investor's countries JSON array)

type
enum<string>

Comma-separated list of investor types to filter by

Available options:
vc,
angel,
pe,
corporate,
government,
accelerator,
family_office,
hedge_fund,
crowdfunding
categories
string

Legacy: Pipe-separated list of investor types (same as type parameter)

headquarters
string

Search by headquarters location (partial match)

ticket_size_min
integer

Minimum ticket size in USD

ticket_size_max
integer

Maximum ticket size in USD

sort_by
enum<string>
default:created_at

Field to sort by

Available options:
name,
created_at,
ticket_size_min,
ticket_size_max
sort_order
enum<string>
default:desc

Sort direction

Available options:
asc,
desc
count
enum<string>

When set to "true", returns only pagination metadata with an empty data array. No credits are charged.

Available options:
true

Response

Successful response with investor data

success
boolean
required
Example:

true

data
object[]
required
pagination
object
required
meta
object
required