# Get Creative

<mark style="color:purple;">`GET`</mark> `/creative/:creativeId`

Use this method to get a specific creative.

#### **Path Parameters**

| Name       | Type   | Description        |
| ---------- | ------ | ------------------ |
| creativeId | Number | ID of the creative |

#### **Headers**

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

#### **Response**

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

```json
{
  "id": number,
  "name": string,
  "is_archived": boolean,
  "account": {
    "id": number,
    "name": string
  },
  "order": {
    "id": number,
    "name": string
  },
  "line_item": {
    "id": number,
    "name": string
  },
  "mediatype": string, //Options ('banner', 'video', 'native', 'audio')
  "w": number,
  "h": number,
  "content": string,
  "adomain": string,
  "weight": number,
  "comment": string
}
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}
