Skip to main content
GET
/
person
/
deals
Get deals a person participated in (as an investor) by identifier
curl --request GET \
  --url https://www.tryfundable.ai/api/v1/person/deals \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "deals": [
      {}
    ]
  },
  "meta": {
    "total_count": 11,
    "page": 0,
    "page_size": 10
  }
}

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

id
string<uuid>

Person UUID

linkedin
string

LinkedIn person URL

crunchbase
string

Crunchbase person URL

twitter
string

Twitter/X URL

page
integer
default:0

Page number (0-based)

Required range: x >= 0
page_size
integer
default:10

Number of results per page (1-500)

Required range: 1 <= x <= 500

Response

Successful response with the person's deals

success
boolean
required
Example:

true

data
object
required
meta
object
required