Skip to main content
GET
/
:projectId
/
lists
/
is-entity-saved
Check if Entity is Saved
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/lists/is-entity-saved
{
  "result": true
}
Checks if a given entity is saved in any list belonging to the authenticated user.

Query Parameters

entityId
string
required
The ID of the entity to check for

Response

Returns a boolean value indicating if the entity is saved.
result
boolean
true if the entity is saved in any list, false otherwise

Error Responses

{
  "error": "Missing or invalid entityId in query",
  "code": "list/invalid-entity-id"
}
{
  "error": "Internal server error.",
  "code": "list/server-error",
  "details": "<Error message>"
}

Notes

  • Returns a boolean value indicating if the entity is saved in any of the user’s lists.
  • This endpoint checks across all lists belonging to the authenticated user.
I