You're viewing the Kitchen Sink example - every writedocs feature combined in one site.

List all widgets

GET/widgets

Query Parameters

limitinteger

Max number of widgets to return

Response

200A list of widgets
namestring
colorstring
idstring
Request
curl -X GET "https://api.kitchen-sink.example.com/v1/widgets?limit=<limit>" \
  -H "X-API-Key: <X-API-Key>"
Response
[
  {
    "name": "Sprocket",
    "color": "indigo",
    "id": "wdg_abc123"
  }
]