Get alert configurations for authenticated user
curl --request GET \
--url https://www.tryfundable.ai/api/v1/alerts/configurations \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.tryfundable.ai/api/v1/alerts/configurations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.tryfundable.ai/api/v1/alerts/configurations', 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://www.tryfundable.ai/api/v1/alerts/configurations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.tryfundable.ai/api/v1/alerts/configurations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.tryfundable.ai/api/v1/alerts/configurations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.tryfundable.ai/api/v1/alerts/configurations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"configurations": [
{
"configuration_id": "550e8400-e29b-41d4-a716-446655440000",
"configuration_name": "AI Startups Series A",
"frequency": "WEEKLY",
"description": "Track AI and ML startups raising Series A funding",
"filters": {
"industries": [
"artificial-intelligence",
"machine-learning"
],
"financing_types": [
"Series A"
],
"deal_size_min": 1000000,
"deal_size_max": 10000000,
"locations": [
"san-francisco-bay-area",
"new-york-new-york"
],
"investors": [],
"companies": []
}
},
{
"configuration_id": "660e8400-e29b-41d4-a716-446655440001",
"configuration_name": "Healthcare Seed Rounds",
"frequency": "DAILY",
"description": "Daily alerts for healthcare seed funding",
"filters": {
"industries": [
"health-care"
],
"super_categories": [
"biotechnology"
],
"financing_types": [
"Seed"
],
"deal_size_min": 500000,
"deal_size_max": 5000000,
"num_employees": [
"1-10",
"11-50"
],
"investors": [
{
"id": "sequoia-capital",
"name": "Sequoia Capital"
}
],
"companies": []
}
},
{
"configuration_id": "770e8400-e29b-41d4-a716-446655440002",
"configuration_name": "Fintech Tracker",
"frequency": "MONTHLY",
"description": "Monthly roundup of fintech funding activity",
"filters": {
"industries": [
"financial-services",
"fintech"
],
"financing_types": [
"Series A",
"Series B",
"Series C"
],
"locations": [
"united-states"
],
"companies": [
{
"id": "stripe",
"name": "Stripe"
},
{
"id": "plaid",
"name": "Plaid"
}
]
}
}
]
},
"meta": {
"page": 0,
"page_size": 3,
"credits_used": 0
}
}
Alerts
Get Alert Configurations
Retrieve all alert configurations for the authenticated user (identified by API key). Returns configuration metadata including filters, frequency, and descriptions.
Important Notes:
- This endpoint does NOT consume usage credits (actualUsageCount: 0)
- Returns only configuration metadata, not deal data
- Does not require any query parameters - user is identified by API key
- All configurations for the authenticated user are returned (no pagination)
Authentication:
- User identity is automatically determined from the API key
- No email or user_id parameter needed
Use Cases:
- Look up what alerts are configured for the authenticated user
- Retrieve alert filter settings for external integrations
- Audit alert configurations programmatically
GET
/
alerts
/
configurations
Get alert configurations for authenticated user
curl --request GET \
--url https://www.tryfundable.ai/api/v1/alerts/configurations \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.tryfundable.ai/api/v1/alerts/configurations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.tryfundable.ai/api/v1/alerts/configurations', 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://www.tryfundable.ai/api/v1/alerts/configurations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.tryfundable.ai/api/v1/alerts/configurations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.tryfundable.ai/api/v1/alerts/configurations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.tryfundable.ai/api/v1/alerts/configurations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"configurations": [
{
"configuration_id": "550e8400-e29b-41d4-a716-446655440000",
"configuration_name": "AI Startups Series A",
"frequency": "WEEKLY",
"description": "Track AI and ML startups raising Series A funding",
"filters": {
"industries": [
"artificial-intelligence",
"machine-learning"
],
"financing_types": [
"Series A"
],
"deal_size_min": 1000000,
"deal_size_max": 10000000,
"locations": [
"san-francisco-bay-area",
"new-york-new-york"
],
"investors": [],
"companies": []
}
},
{
"configuration_id": "660e8400-e29b-41d4-a716-446655440001",
"configuration_name": "Healthcare Seed Rounds",
"frequency": "DAILY",
"description": "Daily alerts for healthcare seed funding",
"filters": {
"industries": [
"health-care"
],
"super_categories": [
"biotechnology"
],
"financing_types": [
"Seed"
],
"deal_size_min": 500000,
"deal_size_max": 5000000,
"num_employees": [
"1-10",
"11-50"
],
"investors": [
{
"id": "sequoia-capital",
"name": "Sequoia Capital"
}
],
"companies": []
}
},
{
"configuration_id": "770e8400-e29b-41d4-a716-446655440002",
"configuration_name": "Fintech Tracker",
"frequency": "MONTHLY",
"description": "Monthly roundup of fintech funding activity",
"filters": {
"industries": [
"financial-services",
"fintech"
],
"financing_types": [
"Series A",
"Series B",
"Series C"
],
"locations": [
"united-states"
],
"companies": [
{
"id": "stripe",
"name": "Stripe"
},
{
"id": "plaid",
"name": "Plaid"
}
]
}
}
]
},
"meta": {
"page": 0,
"page_size": 3,
"credits_used": 0
}
}
⌘I

