Skip to main content
GET
/
person
/
search
Search for a person by name or identifier
curl --request GET \
  --url https://www.tryfundable.ai/api/v1/person/search \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "people": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "linkedin_url": "<string>",
        "crunchbase_url": "<string>",
        "twitter_url": "<string>",
        "person_type": "investor"
      }
    ]
  },
  "meta": {
    "total_count": 7
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tryfundable.ai/llms.txt

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

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format. Format: Authorization: Bearer vg_your_api_key_here

Query Parameters

name
string

Fuzzy search by person name

id
string<uuid>

Person UUID

linkedin
string

LinkedIn person URL

crunchbase
string

Crunchbase person URL

twitter
string

Twitter/X URL

person_type
enum<string>

Optional filter restricting results to one pool. investor keeps only people tracked as investors/angels; company keeps only non-investor people (founders, CEOs, employees). Omit to search both. Applies to both name and identifier modes — identifier lookups return empty if the resolved person doesn't match the requested type.

Available options:
investor,
company

Response

Successful search results

success
boolean
required
Example:

true

data
object
required
meta
object
required