# Get information about a specific offer’s carrier

| HTTP method | Endpoint                            |
| ----------- | ----------------------------------- |
| **GET**     | **/v1/offers/{offer\_id}/carriers** |

## Path parameters <a href="#path-parameters" id="path-parameters"></a>

| Parameter | Description                  |
| --------- | ---------------------------- |
| offer\_id | The unique id for the offer. |

## Response body parameters <a href="#response-body-parameters-1" id="response-body-parameters-1"></a>

| Field     | Type    | Description                                   |
| --------- | ------- | --------------------------------------------- |
| id        | integer |                                               |
| offer\_id | integer | A string that uniquely identifies this offer. |
| name      | string  | Mobile Carrier to be targeted                 |

## Example request <a href="#example-request-1" id="example-request-1"></a>

**Request GET** <https://{networkname}.api.offerslook.com/v1/offers/378901/carriers>

## Example response <a href="#example-response-1" id="example-response-1"></a>

```
    {
    "code": 0,
    "message": "Success",
    "data": {
        "offer_carrier": [
            {
                "id": 20,
                "offer_id": 378901,
                "name": "012 telecom"
            },
            {
                "id": 21,
                "offer_id": 378901,
                "name": "018 xphone"
            }
        ]
    }
}
```
