Badges

Badges_list

GET
/api/v1/badges

Query Parameters

order_by?string

Which field to use when ordering the results.

page?integer

A page number within the paginated result set.

size?integer

Number of results to return per page.

Response Body

curl -X GET "https://loading/api/v1/badges?order_by=string&page=0&size=0"
{
  "items": [
    {
      "id": 0,
      "name": "string",
      "description": "string",
      "image_url": "http://example.com",
      "metric": "price_count",
      "threshold": 2147483647,
      "user_count": 2147483647,
      "created": "2019-08-24T14:15:22Z",
      "updated": "2019-08-24T14:15:22Z"
    }
  ],
  "page": 1,
  "pages": 16,
  "size": 100,
  "total": 1531
}