> For the complete documentation index, see [llms.txt](https://docs.infohunterz.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.infohunterz.com/api/raffles.md).

# Raffles

## Get Raffles

<mark style="color:blue;">`GET`</mark> `https://api.infohunterz.com/v1/raffles/:SKU`

This endpoint allows you to get information and raffles for a specific release we're covering.

#### Path Parameters

| Name | Type   | Description                                      |
| ---- | ------ | ------------------------------------------------ |
| SKU  | string | SKU of the product you want get information for. |

#### Headers

| Name          | Type   | Description          |
| ------------- | ------ | -------------------- |
| Authorization | string | Authorization token. |

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

```
{
    "name": "Nike Dunk Low Ceramic",
    "release_date": "2020-11-19",
    "retail": "$100",
    "color": "Black-Ceramic/Nori",
    "sku": "DA1469-001",
    "image_url": "https://stockx.imgix.net/Nike-Dunk-Low-Ceramic-2020.png",
    "raffles": [
        {
            "id": "DA1469-001-QMGD31",
            "url": "https://launches.endclothing.com/product/nike-dunk-low-sp-da1469-001",
            "store": "End",
            "store_logo": "https://cdn.discordapp.com/attachments/689193339471528089/722783730145427486/3Y481gJ.png",
            "country_iso": "ww",
            "delivery_type": "Shipping",
            "closing_date": "2020-11-19",
            "raffle_type": "Online",
            "notes": "-"
        },
        ...
    ]
```

{% endtab %}

{% tab title="400 " %}

```
{
    "message": "Missing Authorization Token"
}
```

{% endtab %}

{% tab title="401 " %}

```
{
    "message": "Invalid Authorization Token"
}
```

{% endtab %}

{% tab title="403 " %}

```
{
    "message": "Access Denied"
}
```

{% endtab %}

{% tab title="404 " %}

```
{
    "message": "Product Not Found"
}
```

{% endtab %}
{% endtabs %}
