npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@justinjd00/arc-raiders-api

v1.1.1

Published

Type-safe TypeScript wrapper for the MetaForge ARC Raiders API. Access items, quests, ARCs, maps, and traders with full TypeScript support.

Readme

Arc Raiders API Client

GitHub stars GitHub forks GitHub watchers GitHub issues GitHub license npm version npm downloads TypeScript

Type-safe TypeScript wrapper for the MetaForge ARC Raiders API. Fully typed, easy to use, and optimized for Arc Raiders game data.

Installation

npm install @justinjd00/arc-raiders-api

Or with other package managers:

# Yarn
yarn add @justinjd00/arc-raiders-api

# pnpm
pnpm add @justinjd00/arc-raiders-api

# Bun
bun add @justinjd00/arc-raiders-api

Install from GitHub

npm install github:justinjd00/arc-raiders-wrapper

Quick Start

import { createArcRaidersClient } from '@justinjd00/arc-raiders-api';

const client = createArcRaidersClient({
  baseURL: 'https://metaforge.app/api/arc-raiders',
  timeout: 10000,
});

const items = await client.getItems({ rarity: 'epic' });
console.log(items.data);

Features

  • Fully type-safe with TypeScript
  • Access to items, weapons, armor, quests, ARCs, maps, and traders
  • Filtering and pagination support
  • Robust error handling
  • Simple and intuitive API
  • In-memory caching (configurable TTL)
  • React Hooks for easy integration
  • CLI tool for command-line usage
  • Data export (JSON, CSV)
  • Analytics and statistics helpers

Basic Usage

Get All Data (Auto-Pagination)

import { createArcRaidersClient } from '@justinjd00/arc-raiders-api';

const client = createArcRaidersClient();

const allItems = await client.getAllItems();
const allWeapons = await client.getAllWeapons({ rarity: 'legendary' });
const allQuests = await client.getAllQuests({ difficulty: 'hard' });
const allARCs = await client.getAllARCs();

Get Paginated Data

const weapons = await client.getWeapons({ rarity: 'legendary', page: 1, pageSize: 50 });
const quests = await client.getQuests({ difficulty: 'hard', page: 1, pageSize: 20 });
const maps = await client.getMaps();
const traders = await client.getTraders();

CLI Tool

npx arc-raiders items
npx arc-raiders weapons --rarity legendary
npx arc-raiders export json --output data.json
npx arc-raiders stats

Browser Client (Bypass Cloudflare)

If the API returns 403 Forbidden due to Cloudflare bot protection, you can use the browser-based client:

import { createBrowserClient } from '@justinjd00/arc-raiders-api';

const client = createBrowserClient({
  headless: true,
  browser: 'chromium',
});

await client.init();

const items = await client.getItems({ page: 1, pageSize: 10 });
console.log(items.data);

await client.close();

Installation:

npm install playwright
npx playwright install chromium

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.

Links


Note: This is an unofficial package and is not affiliated with Embark Studios or Arc Raiders.