const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getpalm.com/v1/business/registry/{registration_jurisdiction}/{registration_number}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"palm_id": "1234-5678-9012",
"name": "Acme Corp",
"formation_date": "2020-03-15",
"fictitious_names": [
"DBA Name LLC"
],
"industry_codes": [
{
"code": "541511",
"type": "naics",
"description": "Custom Computer Programming Services"
}
],
"associates": [
{
"role": "agent",
"name": "John Smith",
"type": "person",
"title": "Registered Agent",
"address": {
"country": "US",
"street_line_1": "100 Main Street",
"street_line_2": "Suite 200",
"city": "San Francisco",
"region": "CA",
"postal_code": "94105"
}
}
],
"filings": [
{
"type": "annual_report",
"type_name": "Annual Report",
"title": "Annual Report",
"filed_date": "2024-01-15",
"effective_date": "2024-01-15",
"description": "Annual Report 2024"
}
],
"formation_jurisdiction": "US-DE",
"registration_jurisdiction": "US-CA",
"status": "active",
"entity_type": "llc",
"registration_number": "202012345678",
"principal_address": {
"country": "US",
"street_line_1": "100 Main Street",
"street_line_2": "Suite 200",
"city": "San Francisco",
"region": "CA",
"postal_code": "94105"
},
"mailing_address": {
"country": "US",
"street_line_1": "100 Main Street",
"street_line_2": "Suite 200",
"city": "San Francisco",
"region": "CA",
"postal_code": "94105"
},
"standing": {
"registration": "compliant",
"tax": "compliant",
"agent": "compliant"
}
}Retrieve detailed business information from the registry by jurisdiction and registration number. Returns full business details including filings, associates, and standing information.
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getpalm.com/v1/business/registry/{registration_jurisdiction}/{registration_number}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"palm_id": "1234-5678-9012",
"name": "Acme Corp",
"formation_date": "2020-03-15",
"fictitious_names": [
"DBA Name LLC"
],
"industry_codes": [
{
"code": "541511",
"type": "naics",
"description": "Custom Computer Programming Services"
}
],
"associates": [
{
"role": "agent",
"name": "John Smith",
"type": "person",
"title": "Registered Agent",
"address": {
"country": "US",
"street_line_1": "100 Main Street",
"street_line_2": "Suite 200",
"city": "San Francisco",
"region": "CA",
"postal_code": "94105"
}
}
],
"filings": [
{
"type": "annual_report",
"type_name": "Annual Report",
"title": "Annual Report",
"filed_date": "2024-01-15",
"effective_date": "2024-01-15",
"description": "Annual Report 2024"
}
],
"formation_jurisdiction": "US-DE",
"registration_jurisdiction": "US-CA",
"status": "active",
"entity_type": "llc",
"registration_number": "202012345678",
"principal_address": {
"country": "US",
"street_line_1": "100 Main Street",
"street_line_2": "Suite 200",
"city": "San Francisco",
"region": "CA",
"postal_code": "94105"
},
"mailing_address": {
"country": "US",
"street_line_1": "100 Main Street",
"street_line_2": "Suite 200",
"city": "San Francisco",
"region": "CA",
"postal_code": "94105"
},
"standing": {
"registration": "compliant",
"tax": "compliant",
"agent": "compliant"
}
}Enter your API key in the format: sk_test_xxxxx or sk_live_xxxxx
Registration jurisdiction (e.g., US-CA, US-DE)
"US-CA"
Secretary of State registration/file number
"202012345678"
Business details retrieved successfully
Unique Palm business identifier
"1234-5678-9012"
Business legal name
"Acme Corp"
Date the business was formed (YYYY-MM-DD)
"2020-03-15"
List of fictitious/DBA names
["DBA Name LLC"]Industry classification codes (NAICS, SIC)
Show child attributes
Officers, directors, agents, and other associates
Show child attributes
Filing history (amendments, annual reports, etc.)
Show child attributes
Jurisdiction where the business was originally formed (US-XX format)
"US-DE"
Jurisdiction where the business is registered to operate (US-XX format)
"US-CA"
Current business status from Secretary of State records
active, inactive, dissolved, expired, merged, withdrawn, pending, canceled "active"
Type of business entity
llc, corporation, lp, llp, nonprofit, other "llc"
Secretary of State registration number
"202012345678"
Principal place of business address
Show child attributes
Mailing address
Show child attributes
Compliance standing with state agencies
Show child attributes
Was this page helpful?