{"id":13477703,"url":"https://github.com/blockfrost/blockfrost-rust","last_synced_at":"2026-01-07T13:19:45.045Z","repository":{"id":37958130,"uuid":"395642656","full_name":"blockfrost/blockfrost-rust","owner":"blockfrost","description":"Rust SDK for Blockfrost.io","archived":false,"fork":false,"pushed_at":"2024-12-07T23:39:58.000Z","size":399,"stargazers_count":18,"open_issues_count":4,"forks_count":18,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T09:06:16.258Z","etag":null,"topics":["cardano","crate","library","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blockfrost.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-13T12:14:24.000Z","updated_at":"2025-01-28T21:55:09.000Z","dependencies_parsed_at":"2023-01-20T23:15:26.482Z","dependency_job_id":"5b56341b-46ab-47e4-853e-17aa94d1d724","html_url":"https://github.com/blockfrost/blockfrost-rust","commit_stats":{"total_commits":221,"total_committers":13,"mean_commits":17.0,"dds":0.4298642533936652,"last_synced_commit":"a5c0ac6cddc2edc793410455443ad33c9a9e0661"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blockfrost%2Fblockfrost-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blockfrost%2Fblockfrost-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blockfrost%2Fblockfrost-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blockfrost%2Fblockfrost-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blockfrost","download_url":"https://codeload.github.com/blockfrost/blockfrost-rust/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247464222,"owners_count":20942970,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cardano","crate","library","rust"],"created_at":"2024-07-31T16:01:46.332Z","updated_at":"2026-01-07T13:19:45.033Z","avatar_url":"https://github.com/blockfrost.png","language":"Rust","funding_links":[],"categories":["Rust","Crates"],"sub_categories":["Off-chain data sources SDKs"],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://crates.io/crates/blockfrost\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/v/blockfrost?color=2E83FA\" alt=\"Crates.io link\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://docs.rs/blockfrost\"\u003e\n    \u003cimg src=\"https://img.shields.io/docsrs/blockfrost?color=2E83FA\" alt=\"Docs.rs link\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/blockfrost/blockfrost-rust/blob/master/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/l/blockfrost?color=2E83FA\" alt=\"License\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cimg src=\"https://blockfrost.io/images/logo.svg\" width=\"250\" align=\"right\" height=\"90\" style=\"margin-bottom: -50px\"\u003e\n\n# blockfrost-rust\n\n\u003cbr\u003e\n\u003cp align=\"center\"\u003eA Rust SDK for \u003ca href=\"https://blockfrost.io\"\u003eBlockfrost.io\u003c/a\u003e API.\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"#getting-started\"\u003eGetting started\u003c/a\u003e •\n  \u003ca href=\"#installation\"\u003eInstallation\u003c/a\u003e •\n  \u003ca href=\"#examples\"\u003eExamples\u003c/a\u003e •\n  \u003ca href=\"./ENDPOINTS.md\"\u003eEndpoints\u003c/a\u003e\n\u003c/p\u003e\n\n## Getting started\n\nTo use this SDK you need to login at [blockfrost.io](https://blockfrost.io)\nand create a new project to receive an API key.\n\n\u003cimg src=\"https://i.imgur.com/smY12ro.png\"\u003e\n\n## Installation\n\nAdd to your project's `Cargo.toml`:\n\n```toml\nblockfrost = \"1.2.0\"\n```\n\n## Examples\n\nAll the examples are located at the [`examples/`] folder.\n\nYou might want to check [`all_requests.rs`] and [`ipfs.rs`].\n\nHere is [`simple_request.rs`] with the basic setup necessary and no settings\ncustomization:\n\n```rust\nuse blockfrost::{BlockfrostAPI, BlockfrostResult};\n\nfn build_api() -\u003e BlockfrostResult\u003cBlockfrostAPI\u003e {\n    let api = BlockfrostAPI::new(\"mainnetxvMK4xOpp5mHJgihi055KDLU64JJv2be\", Default::default());\n    Ok(api)\n}\n\n#[tokio::main]\nasync fn main() -\u003e blockfrost::BlockfrostResult\u003c()\u003e {\n    let api = build_api()?;\n    let genesis = api.genesis().await?;\n\n    println!(\"{:#?}\", genesis);\n    Ok(())\n}\n```\n\n[`examples/`]: https://github.com/blockfrost/blockfrost-rust/tree/master/examples\n[`all_requests.rs`]: https://github.com/blockfrost/blockfrost-rust/blob/master/examples/all_requests.rs\n[`ipfs.rs`]: https://github.com/blockfrost/blockfrost-rust/blob/master/examples/ipfs.rs\n[`simple_request.rs`]: https://github.com/blockfrost/blockfrost-rust/blob/master/examples/simple_request.rs\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblockfrost%2Fblockfrost-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblockfrost%2Fblockfrost-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblockfrost%2Fblockfrost-rust/lists"}