Skip to main content
[POST]
{{baseUrl}}/api/v1/document/analysis/business_document

HeaderTypeDescription
AppIdstringCreate an app to get your app ID on dashboard here
AuthorizationstringPrivate/secret key. Use <key> not Bearer <key>

Body parameter

ParameterTypeDescriptionRequired
input_typestringurl, defaults to urlrequired
input_valuestringImage URL of the Business document.required

Response

Response
{
    "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

FieldTypeDescription
entityobjectContains the response data
entity.resultobjectOperation result status
entity.result.statusstringProcessing status (e.g., success)
entity.result.messagestringAdditional status message, empty on success
entity.document_typestringType of business document identified (e.g., Business Registration Certificate)
entity.issuing_countrystringCountry where the document was issued
entity.issuing_authoritystringAuthority or body that issued the document
entity.registration_numberstringBusiness registration number extracted from the document
entity.businessobjectExtracted business information
entity.business.legal_namestringLegal name of the registered business
entity.business.entity_typestringType of business entity (e.g., Incorporated, LLC)
entity.business.nature_of_businessarrayList of business activity descriptions
entity.principal_place_of_businessobjectRegistered business address
entity.principal_place_of_business.streetstringStreet address
entity.principal_place_of_business.citystringCity name
entity.principal_place_of_business.lgastringLocal Government Area (may be empty)
entity.principal_place_of_business.statestringState or province
entity.principal_place_of_business.countrystringCountry name
entity.registration_datestringDate the business was registered (YYYY-MM-DD format)