const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Acme Corporation',
registration_jurisdiction: 'US-CA',
formation_jurisdiction: 'US-DE',
ein: '12-3456789',
location_street: '123 Main Street',
location_city: 'San Francisco',
location_region: 'US-CA',
location_postal_code: '94102',
entity_type: 'llc',
status: 'active',
formation_date: {from: '2026-03-23', to: '2026-04-22'}
})
};
fetch('https://api.getpalm.com/v1/business/registry/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "list",
"data": [
{
"palm_id": "1234-5678-9012",
"name": "Acme Corp",
"formation_date": "2020-03-15",
"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"
}
}
]
}Search business registries (Secretary of State filings) for business information. Returns formation details, registration status, and officer information.
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Acme Corporation',
registration_jurisdiction: 'US-CA',
formation_jurisdiction: 'US-DE',
ein: '12-3456789',
location_street: '123 Main Street',
location_city: 'San Francisco',
location_region: 'US-CA',
location_postal_code: '94102',
entity_type: 'llc',
status: 'active',
formation_date: {from: '2026-03-23', to: '2026-04-22'}
})
};
fetch('https://api.getpalm.com/v1/business/registry/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "list",
"data": [
{
"palm_id": "1234-5678-9012",
"name": "Acme Corp",
"formation_date": "2020-03-15",
"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"
}
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.getpalm.com/llms.txt
Use this file to discover all available pages before exploring further.
Enter your API key in the format: sk_test_xxxxx or sk_live_xxxxx
Business name to search
"Acme Corporation"
Registration jurisdiction in ISO 3166-2 format (e.g., US-CA, US-NY, US-TX)
"US-CA"
Formation jurisdiction in ISO 3166-2 format (e.g., US-DE, US-CA, US-WY)
"US-DE"
Employer Identification Number
"12-3456789"
Street address where business is physically located
"123 Main Street"
City where business is physically located
"San Francisco"
Region/state/province where business is physically located (ISO 3166-2 format: XX-YY)
"US-CA"
Postal/ZIP code where business is physically located
"94102"
Entity type
corporation, llc, lp, llp, nonprofit "llc"
Business status
active, inactive, dissolved, expired, merged, withdrawn, pending, canceled "active"
Filter by business formation date (inclusive range). Either bound is optional.
Show child attributes
Search results returned successfully
"list"
Response format depends on your account configuration. Contact support@getpalm.com if you have questions.
Show child attributes
Was this page helpful?