- Provider
- notion
- Category
- Productivity
- Setup
- See setup section below
- Actions
- 48 available
Quick start
Call Notion from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Notion's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"NOTION_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
Setup details for Notion aren't published yet. If you need this integration in production, contact the OverSkill team and we'll prioritize it.
Available actions
48 actions exposed via the
Notion integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
NOTION_ADD_MULTIPLE_PAGE_CONTENT -
NOTION_ADD_PAGE_CONTENT -
NOTION_APPEND_BLOCK_CHILDREN -
NOTION_APPEND_CODE_BLOCKS -
NOTION_APPEND_LAYOUT_BLOCKS -
NOTION_APPEND_MEDIA_BLOCKS -
NOTION_APPEND_TABLE_BLOCKS -
NOTION_APPEND_TASK_BLOCKS -
NOTION_APPEND_TEXT_BLOCKS -
NOTION_ARCHIVE_NOTION_PAGE -
NOTION_CREATE_COMMENT -
NOTION_CREATE_DATABASE
Show all 48 actions
-
NOTION_CREATE_FILE_UPLOAD -
NOTION_CREATE_NOTION_PAGE -
NOTION_DELETE_BLOCK -
NOTION_DUPLICATE_PAGE -
NOTION_FETCH_ALL_BLOCK_CONTENTS -
NOTION_FETCH_BLOCK_CONTENTS -
NOTION_FETCH_BLOCK_METADATA -
NOTION_FETCH_COMMENTS -
NOTION_FETCH_DATA -
NOTION_FETCH_DATABASE -
NOTION_FETCH_ROW -
NOTION_GET_ABOUT_ME -
NOTION_GET_ABOUT_USER -
NOTION_GET_PAGE_MARKDOWN -
NOTION_GET_PAGE_PROPERTY_ACTION -
NOTION_INSERT_ROW_DATABASE -
NOTION_INSERT_ROW_FROM_NL -
NOTION_LIST_DATA_SOURCE_TEMPLATES -
NOTION_LIST_FILE_UPLOADS -
NOTION_LIST_USERS -
NOTION_MOVE_PAGE -
NOTION_QUERY_DATABASE -
NOTION_QUERY_DATABASE_WITH_FILTER -
NOTION_QUERY_DATA_SOURCE -
NOTION_REPLACE_PAGE_CONTENT -
NOTION_RETRIEVE_COMMENT -
NOTION_RETRIEVE_DATABASE_PROPERTY -
NOTION_RETRIEVE_FILE_UPLOAD -
NOTION_RETRIEVE_PAGE -
NOTION_SEARCH_NOTION_PAGE -
NOTION_SEND_FILE_UPLOAD -
NOTION_UPDATE_BLOCK -
NOTION_UPDATE_PAGE -
NOTION_UPDATE_ROW_DATABASE -
NOTION_UPDATE_SCHEMA_DATABASE -
NOTION_UPSERT_ROW_DATABASE
Build with Notion
Open OverSkill, describe what you want to build, and reference Notion in your prompt — the AI will wire up the integration automatically.