Your data is yours to use. Build your own integrations with our API.
Note: The Developer API is currently in beta. Because the current endpoints only work with Pendant data, it is only available to Pendant owners. We plan to add more endpoints very soon. Order your own Pendant here.
We've created an example repository that shows how to use the Developer API to access your data.
@limitless-ai-inc/limitless-api-examples
Join the #developers
channel in our Slack Community for tips and to share what you've built!
First, you'll need to join Limitless if you haven't already. Then, pair your Pendant with your Limitless account. After pairing, open the Desktop or Web App to copy your API key. You'll see the Developer link appear in your Limitless Desktop or Web App:
Once you're logged in, you can create an API key by clicking the "Create API Key" button in the top right corner of the screen.
The security of your data is incredibly important to us. NEVER share your API key, commit it to a source repository, or otherwise expose it to third parties.
Now that you have an API key, you can use it to access the API. Here's an example of how to use the API to get your 3 most recent Lifelog entries:
curl -H "X-API-Key: YOUR_API_KEY" https://api.limitless.ai/v1/lifelogs
There are many parameters you can use to customize your API request. For more information, see the API documentation.
Get recent Lifelogs from your Pendant, search specific date ranges, sort, and paginate.
Get a specific Lifelog by ID.
While the Developer API is in beta, it only supports Pendant data. We plan to add more endpoints very soon.
All API requests require authentication using an API key.
Include your API key in the X-API-Key
header with each request:
curl -H "X-API-Key: YOUR_API_KEY" https://api.limitless.ai/v1/lifelogs
You can obtain an API key from the Developer settings in your Limitless account.
Returns a list of lifelog entries based on specified time range or date.
Parameter | Type | Description |
---|---|---|
timezone | string | IANA timezone specifier. If missing, UTC is used. Optional. |
date | string (date) | Will return all entries beginning on a date in the given timezone (YYYY-MM-DD ). If start or end are provided, date will be ignored. |
start | string (date-time) | Start datetime in modified ISO-8601 format (YYYY-MM-DD or YYYY-MM-DD HH:mm:SS ). Timezones/offsets will be ignored; use the query parameter instead. |
end | string (date-time) | End datetime in modified ISO-8601 format (YYYY-MM-DD or YYYY-MM-DD HH:mm:SS ). Timezones/offsets will be ignored; use the query parameter instead. |
cursor | string | Cursor for pagination to retrieve the next set of lifelogs. Optional. |
direction | string (enum) | Sort direction for lifelogs. Allowed values: asc , desc . Default: desc |
includeMarkdown | boolean | Whether to include markdown content in the response. Default: true |
includeHeadings | boolean | Whether to include headings in the response. Default: true |
limit | integer | Maximum number of lifelogs to return. (Max value is 10; use the cursor parameter for pagination). Default: 3 |
Returns a 200 status code with the following response body:
{
"data": {
"lifelogs": [
{
"id": "string",
"title": "string",
"markdown": "string",
"startTime": "ISO-8601 string",
"endTime": "ISO-8601 string",
"contents": [
{
"type": "heading1" | "heading2" | "blockquote",
"content": "string",
"startTime": "ISO-8601 string",
"endTime": "ISO-8601 string",
"startOffsetMs": "timestamp in milliseconds",
"endOffsetMs": "timestamp in milliseconds",
"children": [],
"speakerName": "string",
"speakerIdentifier": "user" | null
}
]
}
]
},
"meta": {
"lifelogs": {
"nextCursor": "string",
"count": 0
}
}
}
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.limitless.ai/v1/lifelogs?date=2025-03-11&timezone=America/Los_Angeles"
const params = new URLSearchParams({
date: '2025-03-11',
timezone: 'America/Los_Angeles'
});
const response = await fetch(`https://api.limitless.ai/v1/lifelogs?${params}`, {
method: 'GET',
headers: {
'X-API-Key': 'YOUR_API_KEY',
},
});
import requests
response = requests.get('https://api.limitless.ai/v1/lifelogs', params={
'date': '2025-03-11',
'timezone': 'America/Los_Angeles'
}, headers={'X-API-Key': 'YOUR_API_KEY'})
Returns a specific lifelog entry by ID.
Parameter | Type | Description |
---|---|---|
:id | string | The ID of the lifelog entry to retrieve, given in the URL. |
includeMarkdown | boolean | Whether to include markdown content in the response. Default: true |
includeHeadings | boolean | Whether to include headings in the response. Default: true |
Returns a 200 status code with the following response body:
{
"data": {
"lifelog": {
"id": "string",
"title": "string",
"markdown": "string",
"startTime": "ISO-8601 string",
"endTime": "ISO-8601 string",
"contents": [
{
"type": "heading1" | "heading2" | "blockquote",
"content": "string",
"startTime": "ISO-8601 string",
"endTime": "ISO-8601 string",
"startOffsetMs": "timestamp in milliseconds",
"endOffsetMs": "timestamp in milliseconds",
"children": [],
"speakerName": "string",
"speakerIdentifier": "user" | null
}
]
}
}
}
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.limitless.ai/v1/lifelogs/123"
const response = await fetch('https://api.limitless.ai/v1/lifelogs/123', {
method: 'GET',
headers: {
'X-API-Key': 'YOUR_API_KEY',
},
});
import requests
response = requests.get('https://api.limitless.ai/v1/lifelogs/123', headers={'X-API-Key': 'YOUR_API_KEY'})
Limitless Go Beyond