Trabex · Example Payload

Trabex Screen Party Example

ComplianceExport ControlLogisticsRestricted Party ScreeningShipment ManagementTrade Compliance

Trabex Screen Party Example is an example object payload from Trabex, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.trabex.io/v1/screening/check",
    "headers": {
      "X-API-Key": "{{TRABEX_API_KEY}}",
      "Content-Type": "application/json",
      "Accept": "application/json"
    },
    "body": {
      "party": {
        "name": "Eurotech Distribution GmbH",
        "address": "Berliner Strasse 45",
        "city": "Frankfurt",
        "state": "Hesse",
        "country": "DE",
        "postalCode": "60311"
      },
      "listTypes": ["SDN", "DPL", "EL", "BIS", "OFAC"]
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "party": {
        "name": "Eurotech Distribution GmbH",
        "address": "Berliner Strasse 45",
        "city": "Frankfurt",
        "state": "Hesse",
        "country": "DE",
        "postalCode": "60311"
      },
      "riskLevel": "Clear",
      "matches": []
    }
  }
}