Link
List links
Retrieve a list of all short links with pagination.
get/links
Query parameters
limitinteger
The number of items to return per page.
cursorstring
A cursor for use in pagination. This is the ID of the last item in the previous page.
Response
A page of links with pagination details.
Example response
{
"next_cursor": "next_cursor",
"links": [
{
"updated_at": "2000-01-23T04:56:07.000+00:00",
"created_at": "2000-01-23T04:56:07.000+00:00",
"describe": "describe",
"url": "https://openapi-generator.tech",
"hash": "hash"
},
{
"updated_at": "2000-01-23T04:56:07.000+00:00",
"created_at": "2000-01-23T04:56:07.000+00:00",
"describe": "describe",
"url": "https://openapi-generator.tech",
"hash": "hash"
}
]
}