> For the complete documentation index, see [llms.txt](https://doc.youverify.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.youverify.co/know-your-business-services-kyb/country-specific-kyb-services/south-africa/business-address-verification.md).

# Business Address Verification

## Proof of Address Verification

<mark style="color:green;">`POST`</mark> `{{baseurl}}/v2/api/verifications/za/business-address`

#### Headers

| Name                                    | Type   | Description      |
| --------------------------------------- | ------ | ---------------- |
| token<mark style="color:red;">\*</mark> | String | API secret token |

#### Request Body

| Field                                                | Type   | Description                          |
| ---------------------------------------------------- | ------ | ------------------------------------ |
| registrationNumber<mark style="color:red;">\*</mark> | String | Registration number of the business. |

### <mark style="color:yellow;">BusinessAddress Verification</mark>

With this endpoint, you have access to the verification of the client's business address in South Africa.

{% tabs %}
{% tab title="Business Address Verification Sample Request" %}

```json
{
  "registrationNumber": "201133333323",
  "isConsent": true,
}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Found Response" %}

```json
{
    "success": true,
    "statusCode": 200,
    "message": "success",
    "data": {
        "id": "6696fd1aae3700817d801ad2",
        "status": "found",
        "businessId": "628b38f03ae28a14f52d4bf7",
        "parentId": null,
        "isConsent": true,
        "type": "za_company_address",
        "searchTerm": "201133333323",
        "name": "La Linea CC",
        "registrationNumber": "201133333323",
        "tin": null,
        "jtbTin": null,
        "taxOffice": null,
        "email": null,
        "companyStatus": "In Business",
        "phone": "27112184300",
        "requestedAt": "2024-07-16T23:07:09.667Z",
        "country": "ZA",
        "createdAt": "2024-07-16T23:07:09.966Z",
        "lastModifiedAt": "2024-07-16T23:07:09.966Z",
        "typeOfEntity": "Close Corporation",
        "activity": "MNF: DOLLS AND STUFFED TOYS",
        "registrationDate": "2018-09-19",
        "address": "52 CORLETT DR, JOHANNESBURG, JOHANNESBURG, ZA",
        "state": null,
        "lga": null,
        "city": "JOHANNESBURG",
        "websiteEmail": null,
        "branchAddress": "52 CORLETT DR, JOHANNESBURG, JOHANNESBURG, ZA",
        "headOfficeAddress": null,
        "objectives": null,
        "amlReport": null,
        "adverseMediaReport": null,
        "requestedBy": {
            "firstName": "API",
            "lastName": "User",
            "middleName": "",
            "id": "628b38f03ae28a5a122d4bf3"
        }
    },
    "links": []
}

```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Error Response" %}

```json
{
  "success": false,
  "statusCode": 404,
  "message": "You have attempted to get a resource that does not exist.",
  "name": "ResourceNotFoundError",
  "data": {}
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.youverify.co/know-your-business-services-kyb/country-specific-kyb-services/south-africa/business-address-verification.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
