Get Shipment
GEThttps://api.kvikk.hu/v1/shipment/:trackingNumber
Retrieve comprehensive details about a specific shipment, including real-time tracking updates.
The tracking events are categorized into the following stages, providing a consistent tracking experience across different couriers:
Event ID | Description |
---|---|
booked | The shipment label has been generated, but it has not been dispatched yet. |
sent | The shipment has been picked up by the courier or dropped off for dispatch. |
in_transit | The shipment is in transit, traveling between locations. |
out_for_delivery | The shipment is on its way for home delivery or being delivered to a point. |
ready_for_pickup | The shipment is available for pickup at the designated delivery point. |
delivered | The shipment has been successfully delivered to the recipient or picked up from the delivery point. |
failed | Delivery attempt failed; the shipment may be retried. |
returned | The shipment has been returned to the sender. |
This structure allows for easy monitoring of a shipment's progress, no matter which courier is handling it.
Request
Responses
- 200
OK
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.kvikk.hu/v1/shipment/:trackingNumber");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear