Get widget

GET /api/widgets/{widget}

Path parameters

  • widget string Required

    The unique identifier of a widget.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • data array | object Required

      One of:

      This is a widget. It has a name and a description. It can be used to demonstrate the use of components.

    • Additional properties are NOT allowed
  • 404 application/problem+json

    Not Found

    Hide response attributes Show response attributes object
    • title string
    • detail string
GET /api/widgets/{widget}
curl \
 -X GET https://example.com/api/widgets/{widget}
Response examples (200)
{
  "data": [],
  "links": {}
}
Response examples (404)
{
  "title": "string",
  "detail": "string"
}