Ugrás a fő tartalomhoz

Get Shipment

GET 

https://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 IDDescription
bookedThe shipment label has been generated, but it has not been dispatched yet.
sentThe shipment has been picked up by the courier or dropped off for dispatch.
in_transitThe shipment is in transit, traveling between locations.
out_for_deliveryThe shipment is on its way for home delivery or being delivered to a point.
ready_for_pickupThe shipment is available for pickup at the designated delivery point.
deliveredThe shipment has been successfully delivered to the recipient or picked up from the delivery point.
failedDelivery attempt failed; the shipment may be retried.
returnedThe 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

OK

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());
Request Collapse all
Base URL
https://api.kvikk.hu/v1
Parameters
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!