Poland VAT Search

VAT number validation

Credit Message Error
- {"code": "credit_message", "message": "Credit limit reached! For assistance, please contact the support"}

Request and Response Object Structures.

{
  "vat_number": string
}
{
    "results": [
    {
            "id": integer,
            "entity_name": string,
            "address": string,
            "created_at": string,
            "updated_at": string,
            "created_by": string,
            "search_type": string,
            "status": string,
            "raw_data": [],
            "message": string
        }
    ]
}

Sample Requests and Responses.

{
  "vat_number": "87534459875"
}
{
    "results": [
        {
            "id": 6485,
            "entity_name": "87534459875",
            "address": "poland",
            "created_at": "2023-09-21T04:33:42.871091Z",
            "updated_at": "2023-09-21T04:33:42.871112Z",
            "created_by": "compliancely",
            "search_type": "KYB",
            "status": "Pending",
            "raw_data": [],
            "message": "Record created successfully"
        }
    ]
}
{
    "errors": [
        {
            "code": "vat_number",
            "message": "VAT Number field is required"
        }
    ],
    "data": {
        "vat_number": "",
        "search_flag": "VAT",
        "search_type": "KYB"
    },
    "success": false
}
{
    "detail": "Authentication credentials were not provided."
}
{
    "errors": [
        {
            "code": "credit_message",
            "message": "Credit limit reached! For assistance, please contact the support"
        }
    ],
    "data": {
        "vat_number": "2343223443",
        "search_flag": "VAT",
        "search_type": "KYB"
    },
    "success": false
}
{
    "detail": "Invalid token."
}
{
    "detail": "Invalid token header. No credentials provided."
}
Language
Credentials
Basic
base64
:
Click Try It! to start a request and see the response here!