Tradevynt fits into your existing workflow.

Native connectors for common broker portal and TMS tools. REST API and webhook delivery for everything else. Tradevynt is not a TMS replacement — it sits between your document sources and your existing broker workflow, handling the extraction step that everything else skips.

Three ways to connect

Broker Portals

Direct API connections to customs broker portal systems. Your extracted entry data arrives in your broker's queue pre-formatted for their intake process.

NexusBroker Portal
CargoBase Customs Module
TradePilot Entry Manager
BrokerSync API v2
Transportation Management Systems

Bidirectional sync with TMS platforms your operations team already runs. Shipment data flows in, validated entry data flows out.

Flexlink WMS + TMS
TradePilot TMS
FreightOS-compatible
AES Connector v3
File-Based Delivery

Not every workflow runs through an API. File-based channels are first-class delivery options, not afterthoughts.

Email forwarding (dedicated address)
SFTP (inbound + outbound)
S3 bucket (AWS)
EDI X12 856 (inbound)

Build your own connection.

One endpoint to push a document in, one structured JSON object back. If your stack isn't in our connector list, you can wire it yourself in an afternoon.

99.7%
uptime SLA target
<8s
median extraction latency
Request POST /v1/extract
// Request
{
  "document_url": "https://docs.example.com/bol-2025-041.pdf",
  "entry_type": "01",
  "destination_country": "US",
  "webhook_url": "https://your-tms.com/webhooks/tvnt"
}

// Response (sync excerpt)
{
  "job_id": "tvnt_j_8a3f1c",
  "status": "processing",
  "eta_ms": 6200
}

// Webhook payload (on completion)
{
  "job_id": "tvnt_j_8a3f1c",
  "status": "complete",
  "fields": {
    "hs_code": "8471.30.0100",
    "declared_value": "USD 84600",
    "country_of_origin": "CN"
  },
  "exceptions": []
}

Real-time push on extraction completion.

When extraction completes, Tradevynt pushes the full payload to your designated endpoint. No polling, no delayed batch delivery.

Retry logic
3 attempts with exponential backoff (30s, 5m, 30m). Failed deliveries land in a dead-letter queue available via API.
Signed payloads
Every webhook is HMAC-signed. Verify the signature header before processing to confirm the payload originated from Tradevynt.
Delivery timestamps
Each payload includes ISO-8601 timestamps for document received, extraction completed, and webhook dispatched — useful for ACE filing timeline tracking.
Webhook payload schema
{
  "event": "extraction.complete",
  "job_id": "tvnt_j_8a3f1c",
  "timestamps": {
    "received": "2025-11-14T09:12:03Z",
    "extracted": "2025-11-14T09:12:09Z",
    "dispatched": "2025-11-14T09:12:10Z"
  },
  "entry_type": "01",
  "fields": { ... },
  "exceptions": [
    {
      "field": "freight_charges",
      "reason": "value_ambiguity",
      "candidates": ["3850", "3950"]
    }
  ]
}