v1

latestOpenAPI 3.0.1MIT2026-07-176912.0 KB
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.

idstring uuid

Unique identifier of the link. Use this to update a specific link.

urlContainsstring

Filter links that contain this text in their URL.

Response

A page of links with pagination details.

next_cursorstring required

A cursor to be used to fetch the next page of results.

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"
    }
  ]
}
All 6 operations