Notion API Common Issues

Sub-skill of notion-api: Common Issues.

vamseeachanta 8029695 1.1 KB Updated

File contents

Common Issues

Common Issues

Issue: 401 Unauthorized

# Verify API key
curl -s "https://api.notion.com/v1/users/me" \
    -H "Authorization: Bearer $NOTION_API_KEY" \
    -H "Notion-Version: 2022-06-28"

# Check if integration is connected to the page/database
# Go to page > ... menu > Connections > Your integration

Issue: 404 Not Found

# Ensure integration has access to the page
# The integration must be explicitly connected to each page

# For databases, check the database ID is correct
# Database ID format: 32 hex characters (with or without hyphens)

Issue: 400 Bad Request

# Check property names match exactly (case-sensitive)
# Verify property types match the database schema

# Common mistakes:
# - Using "title" instead of actual title property name
# - Wrong select/multi_select option names
# - Invalid date format (use ISO 8601: "2025-01-17")

Issue: Rate limiting (429)

# Notion allows ~3 requests/second
# Implement exponential backoff
# Check Retry-After header for wait time

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/business/productivity/notion-api/common-issues commit 8029695147

Frequently asked questions

npx skillmds@latest add vamseeachanta/notion-api-common-issues