Skip to content

Get a business

Request

Retrieve full details for a business, including its addresses. The EIN is returned masked (einLast4) unless the API key also holds the read:businesses:ein scope, in which case the full value is returned in ein. A null ein with a non-null einLast4 means the key lacks that scope; both null means no EIN is on record.

Security
ApiKeyAuth
Path
idstringrequired
curl -i -X GET \
  'https://api.pioneerft.com/api/public/v1/businesses/{id}' \
  -H 'Authorization: Bearer <YOUR_API Key_HERE>'

Responses

Successful response with business detail

Bodyapplication/json
dataobject(PublicBusinessDetail)
Response
{ "data": { "id": "string", "name": "string", "dba": "string", "entityType": "string", "einLast4": "string", "state": "string", "naics": "string", "role": "string", "ein": "string", "tinType": "string", "incorporationDate": "string", "phone": "string", "email": "string", "url": "string", "numberOfEmployees": 0, "locations": [ { "id": "string", "address": "string", "address2": "string", "city": "string", "state": "string", "zipCode": "string" } ] } }