{"id":32818232,"url":"https://github.com/justinjd00/arc-raiders-wrapper","last_synced_at":"2025-11-10T15:02:22.159Z","repository":{"id":322317924,"uuid":"1089013739","full_name":"justinjd00/arc-raiders-wrapper","owner":"justinjd00","description":"Unofficial Arc Raiders API Wrapper in TypeScript","archived":false,"fork":false,"pushed_at":"2025-11-03T20:27:16.000Z","size":63,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-03T21:20:18.476Z","etag":null,"topics":["api","new","npm","package","trending","typrescript","wrapper","wrapper-api"],"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/justinjd00.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"justinjd00"}},"created_at":"2025-11-03T19:08:04.000Z","updated_at":"2025-11-03T20:27:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/justinjd00/arc-raiders-wrapper","commit_stats":null,"previous_names":["justinjd00/arc-raiders-wrapper"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/justinjd00/arc-raiders-wrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinjd00%2Farc-raiders-wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinjd00%2Farc-raiders-wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinjd00%2Farc-raiders-wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinjd00%2Farc-raiders-wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/justinjd00","download_url":"https://codeload.github.com/justinjd00/arc-raiders-wrapper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinjd00%2Farc-raiders-wrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":283181958,"owners_count":26793110,"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","status":"online","status_checked_at":"2025-11-07T02:00:06.343Z","response_time":61,"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":["api","new","npm","package","trending","typrescript","wrapper","wrapper-api"],"created_at":"2025-11-07T12:00:29.866Z","updated_at":"2025-11-07T12:02:36.777Z","avatar_url":"https://github.com/justinjd00.png","language":"TypeScript","funding_links":["https://github.com/sponsors/justinjd00"],"categories":[],"sub_categories":[],"readme":"# Arc Raiders API Client\n\n\u003cdiv align=\"center\"\u003e\n\n![GitHub stars](https://img.shields.io/github/stars/justinjd00/arc-raiders-wrapper?style=social)\n![GitHub forks](https://img.shields.io/github/forks/justinjd00/arc-raiders-wrapper?style=social)\n![GitHub watchers](https://img.shields.io/github/watchers/justinjd00/arc-raiders-wrapper?style=social)\n![GitHub issues](https://img.shields.io/github/issues/justinjd00/arc-raiders-wrapper)\n![GitHub license](https://img.shields.io/github/license/justinjd00/arc-raiders-wrapper)\n![npm version](https://img.shields.io/npm/v/@justinjd00/arc-raiders-api)\n![npm downloads](https://img.shields.io/npm/dm/@justinjd00/arc-raiders-api)\n![TypeScript](https://img.shields.io/badge/TypeScript-5.0-blue)\n\n\n\u003c/div\u003e\n\nType-safe TypeScript wrapper for the MetaForge ARC Raiders API. Fully typed, easy to use, and optimized for Arc Raiders game data.\n\n## Installation\n\n```bash\nnpm install @justinjd00/arc-raiders-api\n```\n\nOr with other package managers:\n\n```bash\n# Yarn\nyarn add @justinjd00/arc-raiders-api\n\n# pnpm\npnpm add @justinjd00/arc-raiders-api\n\n# Bun\nbun add @justinjd00/arc-raiders-api\n```\n\n### Install from GitHub\n\n```bash\nnpm install github:justinjd00/arc-raiders-wrapper\n```\n\n## Quick Start\n\n```typescript\nimport { createArcRaidersClient } from '@justinjd00/arc-raiders-api';\n\nconst client = createArcRaidersClient({\n  baseURL: 'https://metaforge.app/api/arc-raiders',\n  timeout: 10000,\n});\n\nconst items = await client.getItems({ rarity: 'epic' });\nconsole.log(items.data);\n```\n\n## Features\n\n-  Fully type-safe with TypeScript\n-  Access to items, weapons, armor, quests, ARCs, maps, and traders\n-  Filtering and pagination support\n-  Robust error handling\n-  Simple and intuitive API\n-  In-memory caching (configurable TTL)\n-  React Hooks for easy integration\n-  CLI tool for command-line usage\n-  Data export (JSON, CSV)\n-  Analytics and statistics helpers\n\n## Basic Usage\n\n### Get All Data (Auto-Pagination)\n\n```typescript\nimport { createArcRaidersClient } from '@justinjd00/arc-raiders-api';\n\nconst client = createArcRaidersClient();\n\nconst allItems = await client.getAllItems();\nconst allWeapons = await client.getAllWeapons({ rarity: 'legendary' });\nconst allQuests = await client.getAllQuests({ difficulty: 'hard' });\nconst allARCs = await client.getAllARCs();\n```\n\n### Get Paginated Data\n\n```typescript\nconst weapons = await client.getWeapons({ rarity: 'legendary', page: 1, pageSize: 50 });\nconst quests = await client.getQuests({ difficulty: 'hard', page: 1, pageSize: 20 });\nconst maps = await client.getMaps();\nconst traders = await client.getTraders();\n```\n\n\n### CLI Tool\n\n```bash\nnpx arc-raiders items\nnpx arc-raiders weapons --rarity legendary\nnpx arc-raiders export json --output data.json\nnpx arc-raiders stats\n```\n\n### Browser Client (Bypass Cloudflare)\n\nIf the API returns 403 Forbidden due to Cloudflare bot protection, you can use the browser-based client:\n\n```typescript\nimport { createBrowserClient } from '@justinjd00/arc-raiders-api';\n\nconst client = createBrowserClient({\n  headless: true,\n  browser: 'chromium',\n});\n\nawait client.init();\n\nconst items = await client.getItems({ page: 1, pageSize: 10 });\nconsole.log(items.data);\n\nawait client.close();\n```\n\n**Installation**:\n```bash\nnpm install playwright\nnpx playwright install chromium\n```\n\n**Note**: The browser client uses Playwright to launch a real browser, which can bypass Cloudflare protection. It's slower than the regular client but more reliable when bot protection is active.\n\n## Links\n\n- [GitHub Repository](https://github.com/justinjd00/arc-raiders-wrapper)\n- [MetaForge ARC Raiders API](https://metaforge.app/arc-raiders/api)\n- [ARC Raiders Official Website](https://arcraiders.com/)\n\n---\n\n**Note**: This is an unofficial package and is not affiliated with Embark Studios or Arc Raiders.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustinjd00%2Farc-raiders-wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustinjd00%2Farc-raiders-wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustinjd00%2Farc-raiders-wrapper/lists"}