Short url

List short urls

This endpoint allows you to fetch your short urls.

get/2/url-shortener

Request body

order_by'code' | 'url' | 'created_at' | 'expiration_date' nullable
order_direction'ASC' | 'DESC' nullable
searchstring nullable
per_pageinteger nullable

Response

Default Response

result'success' | 'error'

Result of the HTTP request

totalinteger
pageinteger
pagesinteger
items_per_pageinteger

Example response

{
  "result": "success",
  "total": 10,
  "page": 1,
  "pages": 1,
  "items_per_page": 1,
  "data": [
    {
      "code": "czhS2Gn",
      "created_at": 1633435186,
      "expiration_date": 1633435186
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.