Skip to content

Latest commit

 

History

History
111 lines (75 loc) · 3.56 KB

File metadata and controls

111 lines (75 loc) · 3.56 KB

RusherHack Logo

RusherHack Plugin/Theme API

Deploy API (GitHub Pages)

A free, static JSON API generated from the canonical JSON in this repo:
plugins-and-themes.json
It is deployed via GitHub Pages at:

https://rusherdevelopment.github.io/rusherhack-plugins/api/v1/

Note
Endpoints are static. They update only when the repo is updated.


Endpoints

Core


Metadata


Activity (New & Recently Updated)

These files rely on the YAML fields added_at and updated_at:

  • new.json
    Recently added items (sorted by newest added_at).

  • recent.json
    Recently updated items (sorted by newest updated_at or added_at).


Per‑Item


Buckets (Filtered Views)


Usage Examples

Fetch plugins via curl

curl -s https://rusherdevelopment.github.io/rusherhack-plugins/api/v1/plugins.json | jq length

Find all kybe’s plugins

curl -s https://rusherdevelopment.github.io/rusherhack-plugins/api/v1/by-creator/kybe236.json | jq '.[].name'

Get stats

curl -s https://rusherdevelopment.github.io/rusherhack-plugins/api/v1/stats.json | jq .

Showcase


Important:
This is an early v1. API shapes may slightly evolve.