Overview
The Google Keep API allows applications to read and create notes in Google Keep, including text notes, lists, and notes with attachments. Access is controlled via OAuth 2.0 and is currently limited to Google Workspace accounts — it is not available for personal Google accounts. The API is primarily designed for enterprise use cases such as syncing notes with task management systems or knowledge bases.
Beginner Tip
Note that the Google Keep API is only available to Google Workspace accounts, not personal Gmail accounts. You must enable it in Google Cloud Console and complete the OAuth 2.0 flow with the correct scope. If you are building for personal use, consider using the Google Tasks API instead, which has broader availability.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Google Keep",
"description": "API to read, write, and format Google Keep notes",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
name Resource name of the note in the format notes/{note_id}. createTime RFC 3339 timestamp of when the note was originally created. updateTime RFC 3339 timestamp of the most recent modification to the note. title The title of the note, if one was set. body.text.text Plain text content of the note body. trashed Indicates whether the note has been moved to trash. Implementation Example
const url = "https://developers.google.com/keep/api/reference/rest";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Bitbucket
The Bitbucket REST API (v2) provides programmatic access to Bitbucket Cloud repositories, pull requests, pipelines, and user accounts, enabling you to automate code review workflows and integrate Bitbucket into your CI/CD toolchain.
GitHub
⭐ Beginner's PickThe GitHub REST API gives you programmatic access to nearly everything on GitHub — repositories, issues, pull requests, commits, users, organizations, GitHub Actions, and more.
Gitlab
The GitLab REST API provides comprehensive programmatic control over GitLab projects, including repositories, merge requests, pipelines, issues, CI/CD variables, and user management.
Gitter
Gitter provides programmatic access to chat for developers via REST API.
Google Docs
The Google Docs API provides full programmatic control over Google Docs documents, including reading content, inserting text, applying styles, and managing document structure.