Get Packages in Category

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

HTTP Request

GET http://api.oscwii.org/v1/<host>/category/<category>/packages

URL Parameters

Parameter

Default

Description

<host>

primary

Host to use (eg. primary, themes). For info about hosts, scroll down to the Hosts section.

<category>

Name of category to get.

Usage

curl "http://api.oscwii.org/v1/primary/category/demos/packages"
[
  {
    "category": "demos", 
    "coder": "mjbauer95", 
    ...
  }, 
  {
    "category": "demos", 
    "coder": "Owe", 
    ...
  }, 
  {
    "category": "demos", 
    "coder": "Owe", 
    ...
  }, 
  {
    "category": "demos", 
    "coder": "Owe", 
    ...
  }
]

Last updated