# Get Carrier

## /carriers/:carrier\_id

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

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

#### Path Parameters

| Name                                          | Type   | Description                           |
| --------------------------------------------- | ------ | ------------------------------------- |
| carrier\_id<mark style="color:red;">\*</mark> | string | Unique ***carrier\_id*** for carrier. |

#### Headers

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

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

```
{
	status: true,
	message: 'Carrier retrieved successfully',
	data: {
		active: true,
		carrier_id: 'CA-01521075089',
		domestic: true,
		id: 'loYZh5J47D6gJUKOExXeO1RLcMARScLi',
		international: true,		
		logo: 'https://ucarecdn.com/dcdd8109-af8c-4057-8104-192be821dd6e/download4.png',
		metadata: {},
		name: 'DHL Express',
		created_at: '2021-07-13T20:25:53.011Z',
		updated_at: '2021-07-13T20:25:53.011Z'
	}
}
```

{% endtab %}
{% endtabs %}
