askill
notion

notionSafety 70Repository

Read, create, and update Notion pages and databases via the Notion API.

3 stars
1.2k downloads
Updated 2/22/2026

Package Files

Loading files...
SKILL.md

Notion

Interact with Notion workspaces via the API.

Search Pages

curl -s -X POST "https://api.notion.com/v1/search" \
  -H "Authorization: Bearer $NOTION_API_KEY" \
  -H "Notion-Version: 2022-06-28" \
  -H "Content-Type: application/json" \
  -d '{"query": "Meeting Notes"}' | jq '.results[] | {title: .properties.title, id: .id}'

Create a Page

curl -s -X POST "https://api.notion.com/v1/pages" \
  -H "Authorization: Bearer $NOTION_API_KEY" \
  -H "Notion-Version: 2022-06-28" \
  -H "Content-Type: application/json" \
  -d '{
    "parent": {"database_id": "DATABASE_ID"},
    "properties": {"Name": {"title": [{"text": {"content": "New Page"}}]}}
  }'

Query a Database

curl -s -X POST "https://api.notion.com/v1/databases/DATABASE_ID/query" \
  -H "Authorization: Bearer $NOTION_API_KEY" \
  -H "Notion-Version: 2022-06-28" \
  -H "Content-Type: application/json" \
  -d '{}' | jq '.results[:5]'

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

68/100Analyzed 2/22/2026

Solid technical reference skill for Notion API interactions. Provides clear, executable curl commands for 3 core operations (search, create page, query database). Includes useful metadata with emoji and environment requirements. Limited in scope (missing update/delete operations) but what is included is well-structured and actionable. Located in dedicated skills folder with proper tags.

70
75
85
50
80

Metadata

Licenseunknown
Version-
Updated2/22/2026
Publisherkody-w

Tags

apidatabase