curl --request GET \
--url https://prod.featherhq.com/api/v1/leads/{leadId}/memories \
--header 'X-API-Key: <api-key>'
{
"memories": [
{
"id": "<string>",
"memory": "<string>",
"metadata": {},
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"hasMore": true
}
List all memories for a lead with cursor-based pagination
curl --request GET \
--url https://prod.featherhq.com/api/v1/leads/{leadId}/memories \
--header 'X-API-Key: <api-key>'
{
"memories": [
{
"id": "<string>",
"memory": "<string>",
"metadata": {},
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"hasMore": true
}
List of memories retrieved successfully
The response is of type object
.