Set or update the fundraising fit profile
curl --request PUT \
--url https://lite.gravitygtm.com/api/v1/fundraising/profile \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"raise_type": "startup_equity",
"round_size_usd": 123,
"sector_tags": [],
"icp_description": "<string>",
"growth_metrics": {
"arr_usd": 1,
"growth_rate_pct": 123,
"team_size": 1
},
"notable_investors": [],
"raise_goals": "<string>",
"known_competitors": [],
"founder_linkedin_url": "<string>",
"company_linkedin_url": "<string>",
"geography": "<string>",
"geography_weight": "preferred",
"monitoring_opt_in": false,
"lookalike_monitoring_opt_in": false,
"founder_name": "<string>",
"company_name": "<string>",
"calendar_link": "<string>"
}
'import requests
url = "https://lite.gravitygtm.com/api/v1/fundraising/profile"
payload = {
"raise_type": "startup_equity",
"round_size_usd": 123,
"sector_tags": [],
"icp_description": "<string>",
"growth_metrics": {
"arr_usd": 1,
"growth_rate_pct": 123,
"team_size": 1
},
"notable_investors": [],
"raise_goals": "<string>",
"known_competitors": [],
"founder_linkedin_url": "<string>",
"company_linkedin_url": "<string>",
"geography": "<string>",
"geography_weight": "preferred",
"monitoring_opt_in": False,
"lookalike_monitoring_opt_in": False,
"founder_name": "<string>",
"company_name": "<string>",
"calendar_link": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
raise_type: 'startup_equity',
round_size_usd: 123,
sector_tags: [],
icp_description: '<string>',
growth_metrics: {arr_usd: 1, growth_rate_pct: 123, team_size: 1},
notable_investors: [],
raise_goals: '<string>',
known_competitors: [],
founder_linkedin_url: '<string>',
company_linkedin_url: '<string>',
geography: '<string>',
geography_weight: 'preferred',
monitoring_opt_in: false,
lookalike_monitoring_opt_in: false,
founder_name: '<string>',
company_name: '<string>',
calendar_link: '<string>'
})
};
fetch('https://lite.gravitygtm.com/api/v1/fundraising/profile', 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/profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'raise_type' => 'startup_equity',
'round_size_usd' => 123,
'sector_tags' => [
],
'icp_description' => '<string>',
'growth_metrics' => [
'arr_usd' => 1,
'growth_rate_pct' => 123,
'team_size' => 1
],
'notable_investors' => [
],
'raise_goals' => '<string>',
'known_competitors' => [
],
'founder_linkedin_url' => '<string>',
'company_linkedin_url' => '<string>',
'geography' => '<string>',
'geography_weight' => 'preferred',
'monitoring_opt_in' => false,
'lookalike_monitoring_opt_in' => false,
'founder_name' => '<string>',
'company_name' => '<string>',
'calendar_link' => '<string>'
]),
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/profile"
payload := strings.NewReader("{\n \"raise_type\": \"startup_equity\",\n \"round_size_usd\": 123,\n \"sector_tags\": [],\n \"icp_description\": \"<string>\",\n \"growth_metrics\": {\n \"arr_usd\": 1,\n \"growth_rate_pct\": 123,\n \"team_size\": 1\n },\n \"notable_investors\": [],\n \"raise_goals\": \"<string>\",\n \"known_competitors\": [],\n \"founder_linkedin_url\": \"<string>\",\n \"company_linkedin_url\": \"<string>\",\n \"geography\": \"<string>\",\n \"geography_weight\": \"preferred\",\n \"monitoring_opt_in\": false,\n \"lookalike_monitoring_opt_in\": false,\n \"founder_name\": \"<string>\",\n \"company_name\": \"<string>\",\n \"calendar_link\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", 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.put("https://lite.gravitygtm.com/api/v1/fundraising/profile")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"raise_type\": \"startup_equity\",\n \"round_size_usd\": 123,\n \"sector_tags\": [],\n \"icp_description\": \"<string>\",\n \"growth_metrics\": {\n \"arr_usd\": 1,\n \"growth_rate_pct\": 123,\n \"team_size\": 1\n },\n \"notable_investors\": [],\n \"raise_goals\": \"<string>\",\n \"known_competitors\": [],\n \"founder_linkedin_url\": \"<string>\",\n \"company_linkedin_url\": \"<string>\",\n \"geography\": \"<string>\",\n \"geography_weight\": \"preferred\",\n \"monitoring_opt_in\": false,\n \"lookalike_monitoring_opt_in\": false,\n \"founder_name\": \"<string>\",\n \"company_name\": \"<string>\",\n \"calendar_link\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://lite.gravitygtm.com/api/v1/fundraising/profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"raise_type\": \"startup_equity\",\n \"round_size_usd\": 123,\n \"sector_tags\": [],\n \"icp_description\": \"<string>\",\n \"growth_metrics\": {\n \"arr_usd\": 1,\n \"growth_rate_pct\": 123,\n \"team_size\": 1\n },\n \"notable_investors\": [],\n \"raise_goals\": \"<string>\",\n \"known_competitors\": [],\n \"founder_linkedin_url\": \"<string>\",\n \"company_linkedin_url\": \"<string>\",\n \"geography\": \"<string>\",\n \"geography_weight\": \"preferred\",\n \"monitoring_opt_in\": false,\n \"lookalike_monitoring_opt_in\": false,\n \"founder_name\": \"<string>\",\n \"company_name\": \"<string>\",\n \"calendar_link\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"raise_type": "startup_equity",
"round_size_usd": 123,
"sector_tags": [],
"icp_description": "<string>",
"growth_metrics": {
"arr_usd": 1,
"growth_rate_pct": 123,
"team_size": 1
},
"notable_investors": [],
"raise_goals": "<string>",
"known_competitors": [],
"founder_linkedin_url": "<string>",
"company_linkedin_url": "<string>",
"geography": "<string>",
"geography_weight": "preferred",
"monitoring_opt_in": false,
"lookalike_monitoring_opt_in": false,
"founder_name": "<string>",
"company_name": "<string>",
"calendar_link": "<string>"
}{
"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
}fundraising
Set or update the fundraising fit profile
Free — not billed. Two modes selected by raise_type: “startup_equity” (a founder raising from VCs/angels) or “fund_lp” (a fund raising from LPs) — each carries only the fields relevant to that audience. Changing the profile affects future search_investors results. Also reachable via POST to the same path (an alias used internally by the Slack agent tool dispatch) — both accept the identical body.
PUT
/
v1
/
fundraising
/
profile
Set or update the fundraising fit profile
curl --request PUT \
--url https://lite.gravitygtm.com/api/v1/fundraising/profile \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"raise_type": "startup_equity",
"round_size_usd": 123,
"sector_tags": [],
"icp_description": "<string>",
"growth_metrics": {
"arr_usd": 1,
"growth_rate_pct": 123,
"team_size": 1
},
"notable_investors": [],
"raise_goals": "<string>",
"known_competitors": [],
"founder_linkedin_url": "<string>",
"company_linkedin_url": "<string>",
"geography": "<string>",
"geography_weight": "preferred",
"monitoring_opt_in": false,
"lookalike_monitoring_opt_in": false,
"founder_name": "<string>",
"company_name": "<string>",
"calendar_link": "<string>"
}
'import requests
url = "https://lite.gravitygtm.com/api/v1/fundraising/profile"
payload = {
"raise_type": "startup_equity",
"round_size_usd": 123,
"sector_tags": [],
"icp_description": "<string>",
"growth_metrics": {
"arr_usd": 1,
"growth_rate_pct": 123,
"team_size": 1
},
"notable_investors": [],
"raise_goals": "<string>",
"known_competitors": [],
"founder_linkedin_url": "<string>",
"company_linkedin_url": "<string>",
"geography": "<string>",
"geography_weight": "preferred",
"monitoring_opt_in": False,
"lookalike_monitoring_opt_in": False,
"founder_name": "<string>",
"company_name": "<string>",
"calendar_link": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
raise_type: 'startup_equity',
round_size_usd: 123,
sector_tags: [],
icp_description: '<string>',
growth_metrics: {arr_usd: 1, growth_rate_pct: 123, team_size: 1},
notable_investors: [],
raise_goals: '<string>',
known_competitors: [],
founder_linkedin_url: '<string>',
company_linkedin_url: '<string>',
geography: '<string>',
geography_weight: 'preferred',
monitoring_opt_in: false,
lookalike_monitoring_opt_in: false,
founder_name: '<string>',
company_name: '<string>',
calendar_link: '<string>'
})
};
fetch('https://lite.gravitygtm.com/api/v1/fundraising/profile', 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/profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'raise_type' => 'startup_equity',
'round_size_usd' => 123,
'sector_tags' => [
],
'icp_description' => '<string>',
'growth_metrics' => [
'arr_usd' => 1,
'growth_rate_pct' => 123,
'team_size' => 1
],
'notable_investors' => [
],
'raise_goals' => '<string>',
'known_competitors' => [
],
'founder_linkedin_url' => '<string>',
'company_linkedin_url' => '<string>',
'geography' => '<string>',
'geography_weight' => 'preferred',
'monitoring_opt_in' => false,
'lookalike_monitoring_opt_in' => false,
'founder_name' => '<string>',
'company_name' => '<string>',
'calendar_link' => '<string>'
]),
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/profile"
payload := strings.NewReader("{\n \"raise_type\": \"startup_equity\",\n \"round_size_usd\": 123,\n \"sector_tags\": [],\n \"icp_description\": \"<string>\",\n \"growth_metrics\": {\n \"arr_usd\": 1,\n \"growth_rate_pct\": 123,\n \"team_size\": 1\n },\n \"notable_investors\": [],\n \"raise_goals\": \"<string>\",\n \"known_competitors\": [],\n \"founder_linkedin_url\": \"<string>\",\n \"company_linkedin_url\": \"<string>\",\n \"geography\": \"<string>\",\n \"geography_weight\": \"preferred\",\n \"monitoring_opt_in\": false,\n \"lookalike_monitoring_opt_in\": false,\n \"founder_name\": \"<string>\",\n \"company_name\": \"<string>\",\n \"calendar_link\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", 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.put("https://lite.gravitygtm.com/api/v1/fundraising/profile")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"raise_type\": \"startup_equity\",\n \"round_size_usd\": 123,\n \"sector_tags\": [],\n \"icp_description\": \"<string>\",\n \"growth_metrics\": {\n \"arr_usd\": 1,\n \"growth_rate_pct\": 123,\n \"team_size\": 1\n },\n \"notable_investors\": [],\n \"raise_goals\": \"<string>\",\n \"known_competitors\": [],\n \"founder_linkedin_url\": \"<string>\",\n \"company_linkedin_url\": \"<string>\",\n \"geography\": \"<string>\",\n \"geography_weight\": \"preferred\",\n \"monitoring_opt_in\": false,\n \"lookalike_monitoring_opt_in\": false,\n \"founder_name\": \"<string>\",\n \"company_name\": \"<string>\",\n \"calendar_link\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://lite.gravitygtm.com/api/v1/fundraising/profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"raise_type\": \"startup_equity\",\n \"round_size_usd\": 123,\n \"sector_tags\": [],\n \"icp_description\": \"<string>\",\n \"growth_metrics\": {\n \"arr_usd\": 1,\n \"growth_rate_pct\": 123,\n \"team_size\": 1\n },\n \"notable_investors\": [],\n \"raise_goals\": \"<string>\",\n \"known_competitors\": [],\n \"founder_linkedin_url\": \"<string>\",\n \"company_linkedin_url\": \"<string>\",\n \"geography\": \"<string>\",\n \"geography_weight\": \"preferred\",\n \"monitoring_opt_in\": false,\n \"lookalike_monitoring_opt_in\": false,\n \"founder_name\": \"<string>\",\n \"company_name\": \"<string>\",\n \"calendar_link\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"raise_type": "startup_equity",
"round_size_usd": 123,
"sector_tags": [],
"icp_description": "<string>",
"growth_metrics": {
"arr_usd": 1,
"growth_rate_pct": 123,
"team_size": 1
},
"notable_investors": [],
"raise_goals": "<string>",
"known_competitors": [],
"founder_linkedin_url": "<string>",
"company_linkedin_url": "<string>",
"geography": "<string>",
"geography_weight": "preferred",
"monitoring_opt_in": false,
"lookalike_monitoring_opt_in": false,
"founder_name": "<string>",
"company_name": "<string>",
"calendar_link": "<string>"
}{
"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
application/json
- Option 1
- Option 2
Available options:
startup_equity Available options:
pre-seed, seed, series-a, series-b, series-c-plus Minimum string length:
1Minimum string length:
1Show child attributes
Show child attributes
Minimum string length:
1Minimum string length:
1Minimum string length:
1Minimum string length:
1Available options:
strict, preferred, loose Minimum string length:
1Minimum string length:
1Response
200 -- the profile as stored.
- Option 1
- Option 2
Available options:
startup_equity Available options:
pre-seed, seed, series-a, series-b, series-c-plus Minimum string length:
1Minimum string length:
1Show child attributes
Show child attributes
Minimum string length:
1Minimum string length:
1Minimum string length:
1Minimum string length:
1Available options:
strict, preferred, loose Minimum string length:
1Minimum string length:
1⌘I