notion

Installation
SKILL.md

Notion

Manage Notion pages and databases via the REST API.

Environment Variables

Search

curl -s -X POST -H "Authorization: Bearer $NOTION_API_KEY" \
  -H "Notion-Version: 2022-06-28" -H "Content-Type: application/json" \
  "https://api.notion.com/v1/search" \
  -d '{"query":"search term","page_size":10}' | jq '.results[] | {id, type: .object, title: (if .object=="page" then .properties.title.title[0].plain_text // .properties.Name.title[0].plain_text // null else .title[0].plain_text // null end)}'

Get page

Related skills

More from thinkfleetai/thinkfleet-engine

Installs
2
First Seen
Mar 1, 2026