curl --request GET \
--url https://api.beta.dealroom.app/data/entities/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.beta.dealroom.app/data/entities/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.beta.dealroom.app/data/entities/{id}', 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://api.beta.dealroom.app/data/entities/{id}",
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://api.beta.dealroom.app/data/entities/{id}"
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://api.beta.dealroom.app/data/entities/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beta.dealroom.app/data/entities/{id}")
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{
"data": {
"uuid": "345d1ab6-33df-4759-9e17-0d0c0ec9ab1c",
"type": "organization",
"organization_subtype": "company",
"is_investor": false,
"is_founder": false,
"is_executive": false,
"is_partner": false,
"total_invested": 4200000000,
"name": "Stripe",
"tagline": "Online payment processing for internet businesses.",
"about": "Stripe builds economic infrastructure for the internet…",
"image": "https://images.dealroom.co/logos/stripe.png",
"dealroom_url": "https://app.dealroom.co/companies/stripe",
"closing_year": 123,
"employee_count": 123,
"employee_count_1y_growth": 123,
"launch_year": 2010,
"launch_month": 2,
"hq_country": "United States",
"hq_city": "San Francisco",
"website": "<string>",
"website_domain": "<string>",
"linkedin_url": "https://www.linkedin.com/company/stripe",
"twitter_url": "https://twitter.com/stripe",
"lat": 37.7878,
"lon": -122.4032,
"founding_country": "United States",
"founding_city": "San Francisco",
"founding_lat": 37.7878,
"founding_lon": -122.4032,
"latest_valuation": {
"value": 123,
"year": 123,
"month": 123
},
"latest_revenue": {
"value": 123,
"year": 123
},
"added_at": "2026-06-30T04:00:52.000Z",
"created_at": "2026-03-21T08:00:00.000Z",
"updated_at": "2026-03-27T10:30:00.000Z",
"deleted_at": null,
"company": {
"is_unicorn": true,
"is_vc_backed": true,
"is_exited": true,
"is_pe_owned": true,
"is_hiring": true,
"has_founder": true,
"open_jobs_count": 12,
"company_status": "<string>",
"signal_rating": 123,
"similarweb_3_months_growth": 123,
"similarweb_traffic": 123,
"total_funding": 123,
"total_vc_funding": 123,
"unicorn_type": "<string>",
"year_became_unicorn": 123,
"year_of_exit": 123
},
"person": {
"gender": "<string>",
"is_serial_founder": true,
"is_super_founder": true,
"is_promising_founder": true,
"is_strong_founder": true,
"founded_companies_total_funding": 123
},
"investor": {
"total_investments_count": 123,
"preferred_round": "<string>",
"last_investor_round_year": 123,
"last_investor_round_month": 123
},
"university": {
"alumni_count": 123,
"alumni_founder_count": 123,
"alumni_founded_companies_count": 123,
"alumni_unicorn_companies_count": 123,
"spinout_count": 123
},
"funding_summary": {
"total_funding": 9123000000,
"round_count": 28
},
"tags": [
{
"id": 123,
"name": "<string>",
"type": "<string>"
}
],
"founders": [
{
"uuid": "1a2b3c4d-5e6f-7890-1234-567890abcdef",
"name": "<string>",
"image": "<string>",
"dealroom_url": "<string>",
"is_investor": true,
"is_strong_founder": true
}
]
},
"currency": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}Get single entity
Returns the full entity record by UUID (numeric IDs are not accepted). The response shape varies by entity type — companies, investors, people, and universities each expose an optional sub-object (company, investor, person, university) alongside the shared base fields. Read the type / organization_subtype / role flags here, then call the matching typed collection for relationship sub-resources (e.g. /companies/{id}/team, /investors/{id}/portfolio). Monetary fields convert to the requested ?currency= (default USD).
curl --request GET \
--url https://api.beta.dealroom.app/data/entities/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.beta.dealroom.app/data/entities/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.beta.dealroom.app/data/entities/{id}', 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://api.beta.dealroom.app/data/entities/{id}",
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://api.beta.dealroom.app/data/entities/{id}"
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://api.beta.dealroom.app/data/entities/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beta.dealroom.app/data/entities/{id}")
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{
"data": {
"uuid": "345d1ab6-33df-4759-9e17-0d0c0ec9ab1c",
"type": "organization",
"organization_subtype": "company",
"is_investor": false,
"is_founder": false,
"is_executive": false,
"is_partner": false,
"total_invested": 4200000000,
"name": "Stripe",
"tagline": "Online payment processing for internet businesses.",
"about": "Stripe builds economic infrastructure for the internet…",
"image": "https://images.dealroom.co/logos/stripe.png",
"dealroom_url": "https://app.dealroom.co/companies/stripe",
"closing_year": 123,
"employee_count": 123,
"employee_count_1y_growth": 123,
"launch_year": 2010,
"launch_month": 2,
"hq_country": "United States",
"hq_city": "San Francisco",
"website": "<string>",
"website_domain": "<string>",
"linkedin_url": "https://www.linkedin.com/company/stripe",
"twitter_url": "https://twitter.com/stripe",
"lat": 37.7878,
"lon": -122.4032,
"founding_country": "United States",
"founding_city": "San Francisco",
"founding_lat": 37.7878,
"founding_lon": -122.4032,
"latest_valuation": {
"value": 123,
"year": 123,
"month": 123
},
"latest_revenue": {
"value": 123,
"year": 123
},
"added_at": "2026-06-30T04:00:52.000Z",
"created_at": "2026-03-21T08:00:00.000Z",
"updated_at": "2026-03-27T10:30:00.000Z",
"deleted_at": null,
"company": {
"is_unicorn": true,
"is_vc_backed": true,
"is_exited": true,
"is_pe_owned": true,
"is_hiring": true,
"has_founder": true,
"open_jobs_count": 12,
"company_status": "<string>",
"signal_rating": 123,
"similarweb_3_months_growth": 123,
"similarweb_traffic": 123,
"total_funding": 123,
"total_vc_funding": 123,
"unicorn_type": "<string>",
"year_became_unicorn": 123,
"year_of_exit": 123
},
"person": {
"gender": "<string>",
"is_serial_founder": true,
"is_super_founder": true,
"is_promising_founder": true,
"is_strong_founder": true,
"founded_companies_total_funding": 123
},
"investor": {
"total_investments_count": 123,
"preferred_round": "<string>",
"last_investor_round_year": 123,
"last_investor_round_month": 123
},
"university": {
"alumni_count": 123,
"alumni_founder_count": 123,
"alumni_founded_companies_count": 123,
"alumni_unicorn_companies_count": 123,
"spinout_count": 123
},
"funding_summary": {
"total_funding": 9123000000,
"round_count": 28
},
"tags": [
{
"id": 123,
"name": "<string>",
"type": "<string>"
}
],
"founders": [
{
"uuid": "1a2b3c4d-5e6f-7890-1234-567890abcdef",
"name": "<string>",
"image": "<string>",
"dealroom_url": "<string>",
"is_investor": true,
"is_strong_founder": true
}
]
},
"currency": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "<string>",
"details": [
{
"path": "<string>",
"message": "<string>"
}
]
}
}Authorizations
OAuth2 client-credentials flow against the Dealroom Auth0 tenant. Use the client_id / client_secret from a Programmatic API key. Tokens are valid for 24h — Swagger UI will reuse the same token across operations. Revoking or deactivating a key rejects it on the next request (within a ≤5-minute server-side cache window), not at token expiry.
Headers
Pin a Stripe-style date-based API version (YYYY-MM-DD). Omit to use the latest version (2026-09-01). A pinned version is supported for 30 days after it is superseded, after which it returns 400.
"2026-09-01"
Path Parameters
Stable UUID of the entity. Numeric ids are not accepted.
1"345d1ab6-33df-4759-9e17-0d0c0ec9ab1c"
Query Parameters
ISO 4217 currency code for monetary field conversion. Defaults to USD.
"EUR"