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

# Business Document

> Fast and accurate data extraction and verification from about 11000+ Business Documents with support for 200 Countries

```http [POST] theme={null}
{{baseUrl}}/api/v1/document/analysis/business_document

```

### Header

| Header        | Type   | Description                                                                                         |
| ------------- | ------ | --------------------------------------------------------------------------------------------------- |
| AppId         | string | Create an app to get your app ID on dashboard [here](https://app.dojah.io/developers/configuration) |
| Authorization | string | Private/secret key. Use `<key>` not `Bearer <key>`                                                  |

### Body parameter

| Parameter    | Type   | Description                         | Required |
| ------------ | ------ | ----------------------------------- | -------- |
| input\_type  | string | `url`, defaults to `url`            | required |
| input\_value | string | Image URL of the Business document. | required |

### Response

```json Response theme={null}
{
    "entity": {
        "result": {
            "status": "success",
            "message": ""
        },
        "document_type": "Business Registration Certificate",
        "issuing_country": "Sandbox Country",
        "issuing_authority": "Sandbox State Business Authority",
        "registration_number": "SBX-0000",
        "business": {
            "legal_name": "Sandbox Demo Company Ltd.",
            "entity_type": "Incorporated",
            "nature_of_business": ["Software Development", "Testing Services"]
        },
        "principal_place_of_business": {
            "street": "123 Sandbox Street",
            "city": "Testville",
            "lga": "",
            "state": "SB",
            "country": "Sandbox Country"
        },
        "registration_date": "2025-01-01"
    }
}

```

### Response Fields

| Field                                         | Type   | Description                                                                      |
| --------------------------------------------- | ------ | -------------------------------------------------------------------------------- |
| entity                                        | object | Contains the response data                                                       |
| entity.result                                 | object | Operation result status                                                          |
| entity.result.status                          | string | Processing status (e.g., `success`)                                              |
| entity.result.message                         | string | Additional status message, empty on success                                      |
| entity.document\_type                         | string | Type of business document identified (e.g., `Business Registration Certificate`) |
| entity.issuing\_country                       | string | Country where the document was issued                                            |
| entity.issuing\_authority                     | string | Authority or body that issued the document                                       |
| entity.registration\_number                   | string | Business registration number extracted from the document                         |
| entity.business                               | object | Extracted business information                                                   |
| entity.business.legal\_name                   | string | Legal name of the registered business                                            |
| entity.business.entity\_type                  | string | Type of business entity (e.g., `Incorporated`, `LLC`)                            |
| entity.business.nature\_of\_business          | array  | List of business activity descriptions                                           |
| entity.principal\_place\_of\_business         | object | Registered business address                                                      |
| entity.principal\_place\_of\_business.street  | string | Street address                                                                   |
| entity.principal\_place\_of\_business.city    | string | City name                                                                        |
| entity.principal\_place\_of\_business.lga     | string | Local Government Area (may be empty)                                             |
| entity.principal\_place\_of\_business.state   | string | State or province                                                                |
| entity.principal\_place\_of\_business.country | string | Country name                                                                     |
| entity.registration\_date                     | string | Date the business was registered (YYYY-MM-DD format)                             |
