1 unstable release

new 0.1.11 Apr 25, 2024
0.1.10 Apr 21, 2024
0.1.9 Feb 20, 2024

#1 in #notion-api

Download history 453/week @ 2024-02-13 472/week @ 2024-02-20 32/week @ 2024-02-27 4/week @ 2024-03-05 11/week @ 2024-03-12 25/week @ 2024-03-19 11/week @ 2024-03-26 51/week @ 2024-04-02 7/week @ 2024-04-09 157/week @ 2024-04-16

226 downloads per month

MIT license

105KB
3.5K SLoC

notion-client

Build Notion API Crates.io

Notion API client library for rust. Now, this library supports all endpoints except authentication!

Getting Started

Example for Query a Database


use notion_client::endpoints::{
    databases::query::request::{
        Filter, FilterType, PropertyCondition, QueryDatabaseRequest, SelectCondition, Sort,
        SortDirection, Timestamp,
    },
    Client,
};

const NOTION_ARTICLES_DB_ID: &str = "";
const NOTION_TOKEN: &str = "";

#[tokio::main]
async fn main() {
    // Initialize client
    let client = Client::new(NOTION_TOKEN.to_string());
    let Ok(client) = client else {
        panic!("error");
    };

    // Set up request parameters
    let request = QueryDatabaseRequest {
        filter: Some(Filter::Value {
            filter_type: FilterType::Property {
                property: "status".to_string(),
                condition: PropertyCondition::Select(SelectCondition::Equals(
                    "article".to_string(),
                )),
            },
        }),
        sorts: Some(vec![Sort::Timestamp {
            timestamp: Timestamp::CreatedTime,
            direction: SortDirection::Ascending,
        }]),
        ..Default::default()
    };

    // Send request
    let res = client
        .databases
        .query_a_database(NOTION_ARTICLES_DB_ID, request)
        .await;

    // See result
    print!("{:#?}", res);
}

TODO

  • support threadsafe
  • add more examples
  • support blocks endpoint
  • support pages endpoint
  • support databases endpoint
  • support users endpoint
  • support comments endpoint
  • support search endpoint
  • support authentication endpoint
  • add test to blocks endpoint
  • add test to pages endpoint
  • add test to databases endpoint
  • add test to users endpoint
  • add test to comments endpoint
  • add test to search endpoint
  • support builder pattern

Contributing

Contributions are always welcome! If you have an idea, it's best to float it by us before working on it to ensure no effort is wasted. If there's already an open issue for it, knock yourself out.

If you have any questions, feel free to use Discussions. Please don't hesitate to ask questions!

Dependencies

~5–18MB
~269K SLoC