{"id":15011481,"url":"https://github.com/mariomh8/scryfall-api","last_synced_at":"2026-02-27T05:05:17.956Z","repository":{"id":40593781,"uuid":"453537457","full_name":"MarioMH8/scryfall-api","owner":"MarioMH8","description":"A Javascript library for https://scryfall.com/docs/api written in Typescript.","archived":false,"fork":false,"pushed_at":"2026-02-20T20:44:45.000Z","size":73317,"stargazers_count":12,"open_issues_count":2,"forks_count":8,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-20T22:17:09.956Z","etag":null,"topics":["bun","magic-the-gathering","mtg","scryfall","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MarioMH8.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":"SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-29T22:51:03.000Z","updated_at":"2026-02-20T20:44:30.000Z","dependencies_parsed_at":"2025-12-13T08:10:04.707Z","dependency_job_id":null,"html_url":"https://github.com/MarioMH8/scryfall-api","commit_stats":{"total_commits":533,"total_committers":9,"mean_commits":59.22222222222222,"dds":0.2945590994371482,"last_synced_commit":"964e8e09402c9e026d9acef5f50b5da084b905c4"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/MarioMH8/scryfall-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarioMH8%2Fscryfall-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarioMH8%2Fscryfall-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarioMH8%2Fscryfall-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarioMH8%2Fscryfall-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MarioMH8","download_url":"https://codeload.github.com/MarioMH8/scryfall-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarioMH8%2Fscryfall-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29885801,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T23:51:21.483Z","status":"online","status_checked_at":"2026-02-27T02:00:06.759Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["bun","magic-the-gathering","mtg","scryfall","typescript"],"created_at":"2024-09-24T19:41:08.751Z","updated_at":"2026-02-27T05:05:17.952Z","avatar_url":"https://github.com/MarioMH8.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![banner.png](.idea%2Fbanner.png)\n\n\u003ch1 align=\"center\"\u003e\n  scryfall-api\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  A Javascript library for \u003ca href='https://scryfall.com/docs/api' target='_blank'\u003escryfall.com\u003c/a\u003e written in Typescript.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://www.npmjs.com/package/scryfall-api\" rel=\"nofollow\"\u003e\n        \u003cimg src=\"https://img.shields.io/npm/v/scryfall-api?style=flat-square\" alt=\"npm\" style=\"max-width: 100%;\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/MarioMH8/scryfall-api\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/issues/mariomh8/scryfall-api?style=flat-square\" alt=\"GitHub issues\" style=\"max-width: 100%;\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Documentation](#documentation)\n- [Contributing](#contributing)\n\n## Installation\n\n```bash\nnpm install --save scryfall-api\n```\n\n**Using bun**\n\n```bash\nbun add scryfall-api\n```\n\n## Documentation\n\nIn the documentation below, requiring the package is assumed.\n\n```ts\nimport scryfall from 'scryfall-api';\n\nscryfall.Cards.byName('Black Lotus').then(console.log);\n```\n\n**With CommonJS**\n\n```js\nconst scryfall = require('scryfall-api');\n\nscryfall.Cards.byName('Black Lotus').then(console.log);\n```\n\n**If you only need Cards**\n\n```ts\nimport { Cards } from 'scryfall-api';\n\nCards.byName('Black Lotus').then(console.log);\n```\n\nLink to [full documentation.](./DOCUMENTATION.md)\n\n## Contributing\n\nThis project uses [Bun](https://bun.sh) as a runtime, test runner and bundler.\n\nThanks for wanting to help out! Here's the setup you'll have to do:\n\nClone the project\n\n```bash\ngit clone git@github.com:MarioMH8/scryfall-api.git\n```\n\nGo to the project directory\n\n```bash\ncd scryfall-api\n```\n\nInstall dependencies\n\n```bash\nbun install\n```\n\nCompile the project\n\n```bash\nbun run build\n```\n\n## MIT License\n\n[Copyright 2021-2025 MarioMH](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmariomh8%2Fscryfall-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmariomh8%2Fscryfall-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmariomh8%2Fscryfall-api/lists"}