API Guide
  1. Malaysia
API Guide
  • Get Started
  • Document AI
    • Malaysia
      • Extract Bank Statement Data
        POST
      • Extract Bill of Lading Data
        POST
      • Extract Business Card Data
        POST
      • Extract Car Meter Data
        POST
      • Extract Cheque (Front) Data
        POST
      • Extract Company Financial Statement Data
        POST
      • Extract Resume Data
        POST
      • Extract E-Invoice Data
        POST
      • Extract Electricity Bill Data
        POST
      • Extract Identity Card Data
        POST
      • Extract Internet Bill Data
        POST
      • Extract Invoice Data
        POST
      • Extract Passport Data
        POST
      • Extract Payslip Data
        POST
      • Extract Price Tag Data
        POST
      • Extract Purchase Order Data
        POST
      • Extract Receipt (General) Data
        POST
      • Extract SSM Documents Data
        POST
      • Extract Water Bill Data
        POST
    • Thailand
      • Extract Business Card Data
      • Extract Identity Card Data
      • Extract Passport Data
      • Extract Receipt Data
    • Vietnam
      • Extract Business Card Data
      • Extract Identity Card Data
      • Extract Passport Data
      • Extract Receipt Data
    • Philippines
      • Extract Business Card Data
      • Extract Identity Card Data
      • Extract Passport Data
      • Extract Receipt Data
  1. Malaysia

Extract Bill of Lading Data

POST
/document-ai/{model-id}

Extracted Data Types#

The following types will always be present in the API response. If a type parameter is not found in the input, its value will be null.
Parameter NameVariable Type
company_namestring | null
company_addressstring | null
invoice_numberstring | null
invoice_datestring | null
place_of_receiptstring | null
place_of_deliverystring | null
payment_termstring | null
shipment_termstring | null
consignee_infoArray of Objects
consignee_info[].consigneestring | null
consignee_info[].consignee_addressstring | null
consignee_info[].consignee_faxstring | null
consignee_info[].consignee_contactstring | null
consignee_info[].consignee_contact_personstring | null
consignor_infoArray of Objects
consignor_info[].consignorstring | null
consignor_info[].consignor_addressstring | null
consignor_info[].consignor_faxstring | null
consignor_info[].consignor_contactstring | null
consignor_info[].consignor_contact_personstring | null
date_of_deliverystring | null
transportationstring | null
itemArray of Objects
item[].item_po_numberstring | null
item[].item_descriptionstring | null
item[].item_quantitystring | null
item[].item_measurementstring | null
item[].item_gross_weightstring | null
item[].item_net_weightstring | null
item[].item_volumestring | null

Notes#

Each type parameter in the data array will always have the specified type, with the possibility of being null.
If a specific type parameter is not present in the input, its value in the response will be null.

Request

Authorization
Add parameter in header
X-API-KEY
Example:
X-API-KEY: ********************
Path Params

Body Params multipart/form-data

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.axtraction.ai/v1/document/document-ai/model-a1b2c3d4e5f6' \
--header 'X-API-KEY;' \
--form 'file=@""' \
--form 'fileBase64="JVBERi0xLjMNCiXi48/...."' \
--form 'mimeType="application/pdf"'

Responses

🟢200Success
application/json
Body

Example
{
    "success": true,
    "data": [
        {
            "type": "company_name",
            "value": "Global Freight Ltd."
        },
        {
            "type": "company_address",
            "value": "456 Transport Blvd, Suite 200"
        },
        {
            "type": "invoice_number",
            "value": "BL-2024-987"
        },
        {
            "type": "invoice_date",
            "value": "2024-01-15"
        },
        {
            "type": "place_of_receipt",
            "value": "Port of Los Angeles"
        },
        {
            "type": "place_of_delivery",
            "value": "Port of New York"
        },
        {
            "type": "payment_term",
            "value": "Prepaid"
        },
        {
            "type": "shipment_term",
            "value": "FOB"
        },
        {
            "type": "consignee_info",
            "value": [
                {
                    "consignee": "Tech Supplies Inc.",
                    "consignee_address": "789 Industrial Ave, Cityville, CA",
                    "consignee_fax": "555-1234",
                    "consignee_contact": "Alice Johnson",
                    "consignee_contact_person": "Bob Smith"
                }
            ]
        },
        {
            "type": "consignor_info",
            "value": [
                {
                    "consignor": "Global Freight Ltd.",
                    "consignor_address": "456 Transport Blvd, Suite 200, Cityville, NY",
                    "consignor_fax": "555-4321",
                    "consignor_contact": "John Doe",
                    "consignor_contact_person": "Jane Doe"
                }
            ]
        },
        {
            "type": "date_of_delivery",
            "value": "2024-01-18"
        },
        {
            "type": "transportation",
            "value": "Ocean Freight"
        },
        {
            "type": "item",
            "value": [
                {
                    "item_po_number": "PO-123456",
                    "item_description": "Laptop",
                    "item_quantity": "10",
                    "item_measurement": "pcs",
                    "item_gross_weight": "1000 kg",
                    "item_net_weight": "950 kg",
                    "item_volume": "2.5 m³"
                },
                {
                    "item_po_number": "PO-123457",
                    "item_description": "Mouse",
                    "item_quantity": "50",
                    "item_measurement": "pcs",
                    "item_gross_weight": "5 kg",
                    "item_net_weight": "4.5 kg",
                    "item_volume": "0.05 m³"
                }
            ]
        }
    ],
    "miscellaneous": {
        "processedTime": 120.5
    }
}
Modified at 2025-08-04 03:23:13
Previous
Extract Bank Statement Data
Next
Extract Business Card Data
Built with