Start
Guides
Concepts
API endpoints
GET
List link map entries
https://linkshift.app/api/v1/link-map-entriesLists entries of one link map using cursor pagination and optional search.
Operation ID:
listLinkMapEntriesTags: Link Map EntriesSecurity
- ApiKeyAuth: apiKey | header:X-API-Key | API key generated in LinkShift dashboard (`Organization -> Manage API keys`).
Parameters
Query parameters
limit
Type: integerDescription: Maximum number of entries returned in one page.
linkMapIdrequired
Type: stringDescription: Parent link-map ID used to scope entry listing.
search
Type: stringDescription: Optional search string matched against entry keys.
startAfterId
Type: stringDescription: Cursor token using the last item ID from previous page.
Request body schema
No request body schema.
Response schema
Link map entries list
Content type:
application/jsonresponse 200objectrequired
Paginated link-map-entry query response.
dataarray of objectrequired
Link-map-entry items in current page.
createdAtstringrequired
Creation timestamp (UTC).
deletedAtstring | nullnullable
Soft-delete timestamp in UTC when deleted.
destinationstringrequired
Destination URL for the key.
idstringrequired
Link-map entry ID.
keystringrequired
User-provided lookup key.
keyNormalizedstringrequired
Backend-normalized key used in matching.
linkMapIdstringrequired
Parent link-map ID.
updatedAtstringrequired
Last update timestamp (UTC).
dataTypestringrequired
Logical item type in the `data` array.
hasMorebooleanrequired
Whether there are additional results after this page.
moreStartingAfterIdstring
Cursor token to request the next page.
