[TO DO LIST][DAY 02] 2025.05.21 - 노션 데이터베이스 연결

H Kim·2025년 5월 28일
0

개인프로젝트

목록 보기
9/13

어제에 이어 gitignore를 다시 한 번... 아니 사실 여러번 체크하였다...


  • Notion API
    메뉴 > 설정 > API 통합 에 가면 쉽게 생성할 수 있다.

  • Notion Database Key
// 페이지 전체 공유 말고 해당 데이터베이스의 보기링크 복사 누르면 해당 url이 뜬다.
// 여기서 ?(물음표) 앞에 부분이 해당 데이터베이스의 키
https://www.notion.so/{database key}?v=1f88b8db378c8097a2b3000c869ec2e0&pvs=4

  • POSTMAN 으로 통신 해보기
METHOD: POST
URL: https://api.notion.com/v1/databases/{database key}/query
AUTHORIZATION: Bearer Token 
HEADER: {
	Content-Type: application/json
    Notion-Version: 2022-02-22
}

  • 통신을 하면 데이터베이스에 있는 8가지의 정보가 이렇게 길~~~게 온다^.^...
{
    "object": "list",
    "results": [
        {
            "object": "page",
            "id": "-",
            "created_time": "2025-05-20T23:47:00.000Z",
            "last_edited_time": "2025-05-20T23:49:00.000Z",
            "created_by": {
                "object": "user",
                "id": "-"
            },
            "last_edited_by": {
                "object": "user",
                "id": "-"
            },
            "cover": null,
            "icon": null,
            "parent": {
                "type": "database_id",
                "database_id": "-"
            },
            "archived": false,
            "in_trash": false,
            "properties": {
                "longMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "timeType": {
                    "id": "-",
                    "type": "multi_select",
                    "multi_select": [
                        {
                            "id": "-",
                            "name": "AFTERNOON",
                            "color": "pink"
                        }
                    ]
                },
                "shortMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "emoji": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "🌼",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "🌼",
                            "href": null
                        }
                    ]
                },
                "type": {
                    "id": "-",
                    "type": "select",
                    "select": {
                        "id": "-",
                        "name": "TODO",
                        "color": "green"
                    }
                },
                "timeMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "16:00",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "16:00",
                            "href": null
                        }
                    ]
                },
                "ID": {
                    "id": "-",
                    "type": "unique_id",
                    "unique_id": {
                        "prefix": null,
                        "number": 8
                    }
                },
                "status": {
                    "id": "-",
                    "type": "status",
                    "status": {
                        "id": "-",
                        "name": "YET",
                        "color": "red"
                    }
                },
                "datetime": {
                    "id": "-",
                    "type": "date",
                    "date": {
                        "start": "2025-05-25",
                        "end": null,
                        "time_zone": null
                    }
                },
                "title": {
                    "id": "title",
                    "type": "title",
                    "title": [
                        {
                            "type": "text",
                            "text": {
                                "content": "The crownless again shall be king",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "The crownless again shall be king",
                            "href": null
                        }
                    ]
                }
            },
            "url": "-",
            "public_url": null
        },
        {
            "object": "page",
            "id": "1f98b8db-378c-803a-90ca-fa09099cbd2a",
            "created_time": "2025-05-20T23:47:00.000Z",
            "last_edited_time": "2025-05-20T23:49:00.000Z",
            "created_by": {
                "object": "user",
                "id": "-"
            },
            "last_edited_by": {
                "object": "user",
                "id": "-"
            },
            "cover": null,
            "icon": null,
            "parent": {
                "type": "database_id",
                "database_id": "-"
            },
            "archived": false,
            "in_trash": false,
            "properties": {
                "longMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "timeType": {
                    "id": "-",
                    "type": "multi_select",
                    "multi_select": [
                        {
                            "id": "-",
                            "name": "AFTERNOON",
                            "color": "pink"
                        }
                    ]
                },
                "shortMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "emoji": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "🥰",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "🥰",
                            "href": null
                        }
                    ]
                },
                "type": {
                    "id": "-",
                    "type": "select",
                    "select": {
                        "id": "-",
                        "name": "ROUTINE",
                        "color": "purple"
                    }
                },
                "timeMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "15:00",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "15:00",
                            "href": null
                        }
                    ]
                },
                "ID": {
                    "id": "-",
                    "type": "unique_id",
                    "unique_id": {
                        "prefix": null,
                        "number": 7
                    }
                },
                "status": {
                    "id": "-",
                    "type": "status",
                    "status": {
                        "id": "-",
                        "name": "YET",
                        "color": "red"
                    }
                },
                "datetime": {
                    "id": "-",
                    "type": "date",
                    "date": {
                        "start": "2025-05-24",
                        "end": null,
                        "time_zone": null
                    }
                },
                "title": {
                    "id": "title",
                    "type": "title",
                    "title": [
                        {
                            "type": "text",
                            "text": {
                                "content": "Renewed shall be blade that was broken",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "Renewed shall be blade that was broken",
                            "href": null
                        }
                    ]
                }
            },
            "url": "-",
            "public_url": null
        },
        {
            "object": "page",
            "id": "-",
            "created_time": "2025-05-20T23:47:00.000Z",
            "last_edited_time": "2025-05-20T23:48:00.000Z",
            "created_by": {
                "object": "user",
                "id": "-"
            },
            "last_edited_by": {
                "object": "user",
                "id": "-"
            },
            "cover": null,
            "icon": null,
            "parent": {
                "type": "database_id",
                "database_id": "-"
            },
            "archived": false,
            "in_trash": false,
            "properties": {
                "longMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "timeType": {
                    "id": "-",
                    "type": "multi_select",
                    "multi_select": [
                        {
                            "id": "-",
                            "name": "DAY",
                            "color": "green"
                        }
                    ]
                },
                "shortMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "emoji": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "🍒",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "🍒",
                            "href": null
                        }
                    ]
                },
                "type": {
                    "id": "-",
                    "type": "select",
                    "select": {
                        "id": "-",
                        "name": "TODO",
                        "color": "green"
                    }
                },
                "timeMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "14:00",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "14:00",
                            "href": null
                        }
                    ]
                },
                "ID": {
                    "id": "-",
                    "type": "unique_id",
                    "unique_id": {
                        "prefix": null,
                        "number": 6
                    }
                },
                "status": {
                    "id": "-",
                    "type": "status",
                    "status": {
                        "id": "-",
                        "name": "YET",
                        "color": "red"
                    }
                },
                "datetime": {
                    "id": "-",
                    "type": "date",
                    "date": {
                        "start": "2025-05-23",
                        "end": null,
                        "time_zone": null
                    }
                },
                "title": {
                    "id": "title",
                    "type": "title",
                    "title": [
                        {
                            "type": "text",
                            "text": {
                                "content": "A light from the shadows shall spring",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "A light from the shadows shall spring",
                            "href": null
                        }
                    ]
                }
            },
            "url": "-",
            "public_url": null
        },
        {
            "object": "page",
            "id": "",
            "created_time": "2025-05-19T23:24:00.000Z",
            "last_edited_time": "2025-05-20T23:47:00.000Z",
            "created_by": {
                "object": "user",
                "id": "-"
            },
            "last_edited_by": {
                "object": "user",
                "id": "-"
            },
            "cover": null,
            "icon": null,
            "parent": {
                "type": "database_id",
                "database_id": "-"
            },
            "archived": false,
            "in_trash": false,
            "properties": {
                "longMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "timeType": {
                    "id": "-",
                    "type": "multi_select",
                    "multi_select": [
                        {
                            "id": "-",
                            "name": "NIGHT",
                            "color": "yellow"
                        }
                    ]
                },
                "shortMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "emoji": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "🍻",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "🍻",
                            "href": null
                        }
                    ]
                },
                "type": {
                    "id": "-",
                    "type": "select",
                    "select": {
                        "id": "-",
                        "name": "ROUTINE_COUNT",
                        "color": "red"
                    }
                },
                "timeMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "13:00",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "13:00",
                            "href": null
                        }
                    ]
                },
                "ID": {
                    "id": "-",
                    "type": "unique_id",
                    "unique_id": {
                        "prefix": null,
                        "number": 5
                    }
                },
                "status": {
                    "id": "-",
                    "type": "status",
                    "status": {
                        "id": "-",
                        "name": "YET",
                        "color": "red"
                    }
                },
                "datetime": {
                    "id": "-",
                    "type": "date",
                    "date": {
                        "start": "2025-05-22",
                        "end": null,
                        "time_zone": null
                    }
                },
                "title": {
                    "id": "title",
                    "type": "title",
                    "title": [
                        {
                            "type": "text",
                            "text": {
                                "content": "From the ashes a fire shall be woken",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "From the ashes a fire shall be woken",
                            "href": null
                        }
                    ]
                }
            },
            "url": "-",
            "public_url": null
        },
        {
            "object": "page",
            "id": "",
            "created_time": "2025-05-19T23:23:00.000Z",
            "last_edited_time": "2025-05-20T23:47:00.000Z",
            "created_by": {
                "object": "user",
                "id": "-"
            },
            "last_edited_by": {
                "object": "user",
                "id": "-"
            },
            "cover": null,
            "icon": null,
            "parent": {
                "type": "database_id",
                "database_id": "-"
            },
            "archived": false,
            "in_trash": false,
            "properties": {
                "longMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "timeType": {
                    "id": "-",
                    "type": "multi_select",
                    "multi_select": [
                        {
                            "id": "-",
                            "name": "DAY",
                            "color": "green"
                        }
                    ]
                },
                "shortMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "emoji": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "🧶",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "🧶",
                            "href": null
                        }
                    ]
                },
                "type": {
                    "id": "-",
                    "type": "select",
                    "select": {
                        "id": "-",
                        "name": "ROUTINE_MEMO",
                        "color": "pink"
                    }
                },
                "timeMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "12:00",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "12:00",
                            "href": null
                        }
                    ]
                },
                "ID": {
                    "id": "-",
                    "type": "unique_id",
                    "unique_id": {
                        "prefix": null,
                        "number": 4
                    }
                },
                "status": {
                    "id": "-",
                    "type": "status",
                    "status": {
                        "id": "-",
                        "name": "YET",
                        "color": "red"
                    }
                },
                "datetime": {
                    "id": "-",
                    "type": "date",
                    "date": {
                        "start": "2025-05-21",
                        "end": null,
                        "time_zone": null
                    }
                },
                "title": {
                    "id": "title",
                    "type": "title",
                    "title": [
                        {
                            "type": "text",
                            "text": {
                                "content": "Deep roots are not reached by the frost",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "Deep roots are not reached by the frost",
                            "href": null
                        }
                    ]
                }
            },
            "url": "-",
            "public_url": null
        },
        {
            "object": "page",
            "id": "-",
            "created_time": "2025-05-19T07:37:00.000Z",
            "last_edited_time": "2025-05-20T23:46:00.000Z",
            "created_by": {
                "object": "user",
                "id": "-"
            },
            "last_edited_by": {
                "object": "user",
                "id": "-"
            },
            "cover": null,
            "icon": null,
            "parent": {
                "type": "database_id",
                "database_id": "-"
            },
            "archived": false,
            "in_trash": false,
            "properties": {
                "longMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "timeType": {
                    "id": "-",
                    "type": "multi_select",
                    "multi_select": [
                        {
                            "id": "-",
                            "name": "NIGHT",
                            "color": "yellow"
                        },
                        {
                            "id": "-",
                            "name": "DAY",
                            "color": "green"
                        },
                        {
                            "id": "-",
                            "name": "AFTERNOON",
                            "color": "pink"
                        }
                    ]
                },
                "shortMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "emoji": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "🤣",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "🤣",
                            "href": null
                        }
                    ]
                },
                "type": {
                    "id": "-",
                    "type": "select",
                    "select": {
                        "id": "-",
                        "name": "ROUTINE_TIME",
                        "color": "brown"
                    }
                },
                "timeMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "11:00",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "11:00",
                            "href": null
                        }
                    ]
                },
                "ID": {
                    "id": "-",
                    "type": "unique_id",
                    "unique_id": {
                        "prefix": null,
                        "number": 3
                    }
                },
                "status": {
                    "id": "-",
                    "type": "status",
                    "status": {
                        "id": "btoz",
                        "name": "REST",
                        "color": "yellow"
                    }
                },
                "datetime": {
                    "id": "-",
                    "type": "date",
                    "date": {
                        "start": "2025-05-20",
                        "end": null,
                        "time_zone": null
                    }
                },
                "title": {
                    "id": "title",
                    "type": "title",
                    "title": [
                        {
                            "type": "text",
                            "text": {
                                "content": "The old that is strong does not wither",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "The old that is strong does not wither",
                            "href": null
                        }
                    ]
                }
            },
            "url": "-",
            "public_url": null
        },
        {
            "object": "page",
            "id": "-",
            "created_time": "2025-05-19T07:31:00.000Z",
            "last_edited_time": "2025-05-20T23:46:00.000Z",
            "created_by": {
                "object": "user",
                "id": "-"
            },
            "last_edited_by": {
                "object": "user",
                "id": "-"
            },
            "cover": null,
            "icon": null,
            "parent": {
                "type": "database_id",
                "database_id": "-"
            },
            "archived": false,
            "in_trash": false,
            "properties": {
                "longMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "timeType": {
                    "id": "-",
                    "type": "multi_select",
                    "multi_select": [
                        {
                            "id": "-",
                            "name": "AFTERNOON",
                            "color": "pink"
                        },
                        {
                            "id": "-",
                            "name": "DAY",
                            "color": "green"
                        }
                    ]
                },
                "shortMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "emoji": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "😵‍💫",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "😵‍💫",
                            "href": null
                        }
                    ]
                },
                "type": {
                    "id": "-",
                    "type": "select",
                    "select": {
                        "id": "-",
                        "name": "TODO",
                        "color": "green"
                    }
                },
                "timeMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "10:00",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "10:00",
                            "href": null
                        }
                    ]
                },
                "ID": {
                    "id": "-",
                    "type": "unique_id",
                    "unique_id": {
                        "prefix": null,
                        "number": 2
                    }
                },
                "status": {
                    "id": "-",
                    "type": "status",
                    "status": {
                        "id": "-",
                        "name": "DONE",
                        "color": "green"
                    }
                },
                "datetime": {
                    "id": "-",
                    "type": "date",
                    "date": {
                        "start": "2025-05-20",
                        "end": null,
                        "time_zone": null
                    }
                },
                "title": {
                    "id": "title",
                    "type": "title",
                    "title": [
                        {
                            "type": "text",
                            "text": {
                                "content": "Not all thoes who wander are lost",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "Not all thoes who wander are lost",
                            "href": null
                        }
                    ]
                }
            },
            "url": "-",
            "public_url": null
        },
        {
            "object": "page",
            "id": "-",
            "created_time": "2025-05-19T07:29:00.000Z",
            "last_edited_time": "2025-05-20T23:46:00.000Z",
            "created_by": {
                "object": "user",
                "id": "-"
            },
            "last_edited_by": {
                "object": "user",
                "id": "-"
            },
            "cover": null,
            "icon": null,
            "parent": {
                "type": "database_id",
                "database_id": "-"
            },
            "archived": false,
            "in_trash": false,
            "properties": {
                "longMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "timeType": {
                    "id": "-",
                    "type": "multi_select",
                    "multi_select": [
                        {
                            "id": "-",
                            "name": "DAY",
                            "color": "green"
                        }
                    ]
                },
                "shortMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": []
                },
                "emoji": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "✅",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "✅",
                            "href": null
                        }
                    ]
                },
                "type": {
                    "id": "-",
                    "type": "select",
                    "select": {
                        "id": "-",
                        "name": "ROUTINE",
                        "color": "purple"
                    }
                },
                "timeMemo": {
                    "id": "-",
                    "type": "rich_text",
                    "rich_text": [
                        {
                            "type": "text",
                            "text": {
                                "content": "09:00",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "09:00",
                            "href": null
                        }
                    ]
                },
                "ID": {
                    "id": "-",
                    "type": "unique_id",
                    "unique_id": {
                        "prefix": null,
                        "number": 1
                    }
                },
                "status": {
                    "id": "-",
                    "type": "status",
                    "status": {
                        "id": "-",
                        "name": "YET",
                        "color": "red"
                    }
                },
                "datetime": {
                    "id": "-",
                    "type": "date",
                    "date": {
                        "start": "2025-05-19",
                        "end": null,
                        "time_zone": null
                    }
                },
                "title": {
                    "id": "title",
                    "type": "title",
                    "title": [
                        {
                            "type": "text",
                            "text": {
                                "content": "All that is gold does not glitter",
                                "link": null
                            },
                            "annotations": {
                                "bold": false,
                                "italic": false,
                                "strikethrough": false,
                                "underline": false,
                                "code": false,
                                "color": "default"
                            },
                            "plain_text": "All that is gold does not glitter",
                            "href": null
                        }
                    ]
                }
            },
            "url": "-",
            "public_url": null
        }
    ],
    "next_cursor": null,
    "has_more": false,
    "type": "page_or_database",
    "page_or_database": {},
    "developer_survey": "-",
    "request_id": "-"
}

0개의 댓글