# Retrieve a company by ID

Source: https://developer.avalara.com/products/avalara-1099-and-w9/integration-guides/1099-and-w-9/yon5343438999934/

Guide: 1099 & W-9

# Retrieve a company by ID

Learn how to retrieve detailed information about a specific company using its ID.

**Endpoint**: `GET /w9/companies/{id}`

**Use case**:

Fetch the full detail of a specific company, typically before sending a W-9 request or editing company data.

**Sample response**

```
{
    "id": "155706455",
    "createdAt": "2025-09-01T17:14:18.960558",
    "updatedAt": "2025-09-01T17:14:18.960558",
    "name": "ACME LLC",
    "dbaName": "ACME Services",
    "email": "accounts.payable@acme.com",
    "address": "1024 S Mangum St #200",
    "city": "Durham",
    "state": "NC",
    "zip": "27701",
    "telephone": "1234567890",
    "tin": "123-00-0000",
    "referenceId": "CMPY-001",
    "doTinMatch": true,
    "groupName": "ACME Cooporation",
    "foreignProvince": "NC",
    "countryCode": "US",
    "resendRequests": true,
    "resendIntervalDays": 14,
    "maxReminderAttempts": 5
}
```