curl --request POST \
--url https://lite.gravitygtm.com/api/v1/fundraising/search-investors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sector_tags": [
"<string>"
],
"target_lp_types": [],
"geography": "<string>",
"effort": "medium",
"limit": 20,
"include_competitor_lookalikes": false
}
'import requests
url = "https://lite.gravitygtm.com/api/v1/fundraising/search-investors"
payload = {
"sector_tags": ["<string>"],
"target_lp_types": [],
"geography": "<string>",
"effort": "medium",
"limit": 20,
"include_competitor_lookalikes": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
sector_tags: ['<string>'],
target_lp_types: [],
geography: '<string>',
effort: 'medium',
limit: 20,
include_competitor_lookalikes: false
})
};
fetch('https://lite.gravitygtm.com/api/v1/fundraising/search-investors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lite.gravitygtm.com/api/v1/fundraising/search-investors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sector_tags' => [
'<string>'
],
'target_lp_types' => [
],
'geography' => '<string>',
'effort' => 'medium',
'limit' => 20,
'include_competitor_lookalikes' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://lite.gravitygtm.com/api/v1/fundraising/search-investors"
payload := strings.NewReader("{\n \"sector_tags\": [\n \"<string>\"\n ],\n \"target_lp_types\": [],\n \"geography\": \"<string>\",\n \"effort\": \"medium\",\n \"limit\": 20,\n \"include_competitor_lookalikes\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://lite.gravitygtm.com/api/v1/fundraising/search-investors")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"sector_tags\": [\n \"<string>\"\n ],\n \"target_lp_types\": [],\n \"geography\": \"<string>\",\n \"effort\": \"medium\",\n \"limit\": 20,\n \"include_competitor_lookalikes\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://lite.gravitygtm.com/api/v1/fundraising/search-investors")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"sector_tags\": [\n \"<string>\"\n ],\n \"target_lp_types\": [],\n \"geography\": \"<string>\",\n \"effort\": \"medium\",\n \"limit\": 20,\n \"include_competitor_lookalikes\": false\n}"
response = http.request(request)
puts response.read_body{
"data": {
"investors": [
{
"name": "<string>",
"sectorTags": [
"<string>"
],
"geography": "<string>",
"lastActivityDate": "<string>",
"portfolioCompanies": [
"<string>"
],
"exitSizeUsd": 123,
"score": 123,
"warmPath": true,
"lookalikeVia": "<string>",
"rationale": "<string>",
"conflict": true
}
]
},
"credits_charged": 123,
"credits_remaining": 123,
"cached": true,
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true,
"credits_charged": 123
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}Search for investors or LPs matching the stored profile
Requires a fundraising profile to already be set (PUT /v1/fundraising/profile first) — returns 422 not_found otherwise. Searches VC funds and angels for a startup_equity profile, or family offices/HNW individuals/recently-exited founders/institutional allocators for a fund_lp profile. Set include_competitor_lookalikes to also surface funds that backed the profile’s known_competitors. Costs 10-15 (by effort) credit(s) per call, charged even on a miss.
curl --request POST \
--url https://lite.gravitygtm.com/api/v1/fundraising/search-investors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sector_tags": [
"<string>"
],
"target_lp_types": [],
"geography": "<string>",
"effort": "medium",
"limit": 20,
"include_competitor_lookalikes": false
}
'import requests
url = "https://lite.gravitygtm.com/api/v1/fundraising/search-investors"
payload = {
"sector_tags": ["<string>"],
"target_lp_types": [],
"geography": "<string>",
"effort": "medium",
"limit": 20,
"include_competitor_lookalikes": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
sector_tags: ['<string>'],
target_lp_types: [],
geography: '<string>',
effort: 'medium',
limit: 20,
include_competitor_lookalikes: false
})
};
fetch('https://lite.gravitygtm.com/api/v1/fundraising/search-investors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lite.gravitygtm.com/api/v1/fundraising/search-investors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sector_tags' => [
'<string>'
],
'target_lp_types' => [
],
'geography' => '<string>',
'effort' => 'medium',
'limit' => 20,
'include_competitor_lookalikes' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://lite.gravitygtm.com/api/v1/fundraising/search-investors"
payload := strings.NewReader("{\n \"sector_tags\": [\n \"<string>\"\n ],\n \"target_lp_types\": [],\n \"geography\": \"<string>\",\n \"effort\": \"medium\",\n \"limit\": 20,\n \"include_competitor_lookalikes\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://lite.gravitygtm.com/api/v1/fundraising/search-investors")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"sector_tags\": [\n \"<string>\"\n ],\n \"target_lp_types\": [],\n \"geography\": \"<string>\",\n \"effort\": \"medium\",\n \"limit\": 20,\n \"include_competitor_lookalikes\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://lite.gravitygtm.com/api/v1/fundraising/search-investors")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"sector_tags\": [\n \"<string>\"\n ],\n \"target_lp_types\": [],\n \"geography\": \"<string>\",\n \"effort\": \"medium\",\n \"limit\": 20,\n \"include_competitor_lookalikes\": false\n}"
response = http.request(request)
puts response.read_body{
"data": {
"investors": [
{
"name": "<string>",
"sectorTags": [
"<string>"
],
"geography": "<string>",
"lastActivityDate": "<string>",
"portfolioCompanies": [
"<string>"
],
"exitSizeUsd": 123,
"score": 123,
"warmPath": true,
"lookalikeVia": "<string>",
"rationale": "<string>",
"conflict": true
}
]
},
"credits_charged": 123,
"credits_remaining": 123,
"cached": true,
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true,
"credits_charged": 123
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}{
"message": "<string>",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"credits_remaining": 123,
"refund_issue": true
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
pre-seed, seed, series-a, series-b, series-c-plus 1family_office, hnw_individual, recently_exited_founder, institutional, angel 1low, medium, high 1 <= x <= 50Response
200 -- success. Charges 10-15 (by effort) credit(s) on this endpoint. cached is always false today -- no Helium endpoint is currently cached.
Ranked list of scored investor/LP candidates.
Show child attributes
Show child attributes
10-15 (by effort) credit(s), charged even on a miss.
Always false today -- no Helium endpoint is currently cached.