> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leadx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Dun & Bradstreet Object

> This page lists fields returned in the `records` object of `/dnb` enrichment API responses.

<Accordion title="Example Response">
  ```json 200 - Successful Response theme={"system"}
  {
    "success": true,
    "records": [
      {
        "address": "123 Main St",
        "annual_revenue": 2500000,
        "base_url": "example.com",
        "city": "Springfield",
        "company_name": "Acme Inc",
        "contact_name": "Jane Smith",
        "contact_title": "President",
        "country": "United States",
        "dnb_link": "dnb.com/business-directory/company-profiles.acme_inc.html",
        "duns_number": "123456789",
        "encrypted_duns": "encrypted-id",
        "industries": [
          "Manufacturing"
        ],
        "industry": "Manufacturing",
        "record_id": "abc123",
        "state": "IL",
        "website_url": "example.com",
        "zip_code": "62701"
      }
    ],
    "total_records": 1
  }
  ```
</Accordion>

| Field            | Description                                                                               | Type     | Example                                                     |
| ---------------- | ----------------------------------------------------------------------------------------- | -------- | ----------------------------------------------------------- |
| `address`        | Company street address                                                                    | `string` | `123 Main St`                                               |
| `annual_revenue` | Annual revenue reported for the company                                                   | `int`    | `2500000`                                                   |
| `base_url`       | Normalized company website domain                                                         | `string` | `example.com`                                               |
| `city`           | Company geographic city                                                                   | `string` | `Springfield`                                               |
| `company_name`   | Company business name                                                                     | `string` | `Acme Inc`                                                  |
| `contact_name`   | Name of the contact or principal on the D\&B record                                       | `string` | `Jane Smith`                                                |
| `contact_title`  | Title of the contact or principal on the D\&B record                                      | `string` | `President`                                                 |
| `country`        | Company geographic country                                                                | `string` | `United States`                                             |
| `dnb_link`       | Direct link to the company profile in the Dun & Bradstreet business directory             | `string` | `dnb.com/business-directory/company-profiles.acme_inc.html` |
| `duns_number`    | The company's D-U-N-S number, a unique nine-digit identifier assigned by Dun & Bradstreet | `string` | `123456789`                                                 |
| `encrypted_duns` | Encrypted D-U-N-S identifier; can also be supplied as a search parameter on `/dnb`        | `string` | `encrypted-id`                                              |
| `industries`     | All industry classifications for the company                                              | `list`   | `["Manufacturing"]`                                         |
| `industry`       | Primary industry classification of the company                                            | `string` | `Manufacturing`                                             |
| `record_id`      | Unique identifier of the D\&B record                                                      | `string` | `abc123`                                                    |
| `state`          | Two-letter abbreviation for company state or province                                     | `string` | `IL`                                                        |
| `website_url`    | Company website URL                                                                       | `string` | `example.com`                                               |
| `zip_code`       | Company geographic postal code                                                            | `string` | `62701`                                                     |
