# Get Parcel

## /parcels/:id

<mark style="color:blue;">`GET`</mark> `https://api.terminal.africa/v1/parcels/:parcel_id`

This endpoint allows you to retrieve details of a specific parcel.

#### Path Parameters

| Name                                         | Type   | Description   |
| -------------------------------------------- | ------ | ------------- |
| parcel\_id<mark style="color:red;">\*</mark> | string | id of parcel. |

#### Headers

| Name                                            | Type   | Description                      |
| ----------------------------------------------- | ------ | -------------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Set value to `Bearer SECRET_KEY` |

{% tabs %}
{% tab title="200 Parcel retrieved successfully." %}

```
{
	status: true,
	message: 'Parcel retrieved successfully',
	data: {
		description: true,
		id: 'Zt4Xh2pbbCmeVcr5YH9lsFHGqoW3i5w3',
		items: [{
			description: 'Shoes purchased from Shipmonk Store',
			name: 'Rubber Boots',
			currency: 'NGN',
			value: 25000',
			weight: 2.5
			quantity: 1
		}],
		metadata: {},		
		packaging: 'LsuiGzcYlz4dKRYnEXeobJu9gnVbQVXN',
		parcel_id: 'PC-25164820699',
		total_weight: 2.51,
		weight: 2.5,
		weight_unit: 'kg',
		created_at: '2021-07-13T20:25:53.011Z',
		updated_at: '2021-07-13T20:25:53.011Z'
	}
}
```

{% endtab %}
{% endtabs %}
