# Get Packages in Category

## Packages in Category

<mark style="color:blue;">`GET`</mark> `https://api.oscwii.org/v2/<host>/packages?category=<category>`

This endpoint retrieves all applications / packages from specified host and category.

#### Path Parameters

| Name     | Type   | Description                                                                                 |
| -------- | ------ | ------------------------------------------------------------------------------------------- |
| category | string | Name of category to get.                                                                    |
| host     | string | Host to use (e.g. primary, themes). For info about hosts, scroll down to the Hosts section. |

{% tabs %}
{% tab title="200 curl "<https://api.oscwii.org/v2/primary/packages?category=demos>"" %}

```
[
  {
    "category": "demos", 
    "coder": "mjbauer95", 
    ...
  }, 
  {
    "category": "demos", 
    "coder": "Owe", 
    ...
  }, 
  {
    "category": "demos", 
    "coder": "Owe", 
    ...
  }, 
  {
    "category": "demos", 
    "coder": "Owe", 
    ...
  }
]
```

{% endtab %}
{% endtabs %}
