# Get 10DLC Brand Vetting Status

## GET or POST Request

{% hint style="info" %}
<https://v1.api19.com/campaigns/brand/vetting/status>
{% endhint %}

Get the vetting status for a 10DLC brand

{% tabs %}
{% tab title="Curl Post" %}

```bash
curl https://v1.api19.com/campaigns/brand/vetting/status \
 -d 'key=api_token' \
 -d 'brand_id=B1A2C3D4E5'
```

{% endtab %}

{% tab title="Curl Get" %}

```bash
curl https://v1.api19.com/campaigns/brand/vetting/status?key=apikey&brand_id=B1A2C3D4E5
```

{% endtab %}

{% tab title="JSON Response" %}

```json
{
  "status": "ok",
  "data": [
    {
      "evpId": "AEGIS",
      "vettingId": "###",
      "vettingToken": "###",
      "vettingScore": 80,
      "vettingClass": "STANDARD",
      "vettingStatus": "ACTIVE",
      "reasons": [
        "Company size as reported by government or business sources resulted in a score deduction: size range 6-10."
      ],
      "vettingDetails": {},
      "vettedDate": "2024-11-05T16:35:36.000Z",
      "createDate": "2024-11-05T16:35:36.000Z",
      "validUntil": "2025-11-05T16:35:36.000Z",
      "expirationDate": "2025-11-05T16:35:36.000Z"
    }
  ]
}
```

{% endtab %}
{% endtabs %}

## Parameters

* `brand_id` (required) - Brand ID
