# Get placement

<mark style="color:purple;">`GET`</mark> `/placement/:placementId`

Use this method to get a specific placement.

#### **Path Parameters**

| Name        | Type   | Description         |
| ----------- | ------ | ------------------- |
| placementId | Number | ID of the placement |

#### **Headers**

| Name          | Value           |
| ------------- | --------------- |
| Authorization | `Basic <token>` |

#### **Response**

{% tabs %}
{% tab title="200 : OK Get Placement" %}

```json
{
  "id": number,
  "external_id": string,
  "name": string,
  "is_archived": boolean,
  "tag_id": {
    "id": string,
    "name": string
  },
  "account": {
    "id": number,
    "name": string
  },
  "mappings": [
    {
      "id": number,
      "tag_id": {
        "id": string,
        "name": string
      },
      "mapping": {
        "adunit_code": string[],
        "bundle": string[],
        "country": string[],
        "device": string[],
        "domain": string[],
        "gam_ad_unit_path": string[],
        "gpid": string[],
        "mediatype": string[],
        "size": { "w": number, "h": number }[]
      },
      "placement": {
        "id": number,
        "name": string
      }
    }
  ]
}

```

{% endtab %}

{% tab title="404 : Mapping not found " %}

```json
{
  "error": "Placement not found"
}
```

{% endtab %}
{% endtabs %}
