diff --git a/nise-frontend/src/app/api/api.component.css b/nise-frontend/src/app/api/api.component.css
new file mode 100644
index 0000000..e69de29
diff --git a/nise-frontend/src/app/api/api.component.html b/nise-frontend/src/app/api/api.component.html
new file mode 100644
index 0000000..4e5c8f8
--- /dev/null
+++ b/nise-frontend/src/app/api/api.component.html
@@ -0,0 +1,25 @@
+
+
+
# /api/ stuff
+
+ if you'd like to retrieve data from our database, you are invited to use the same endpoints meant for the frontend but in a programmatic way. currently there's no rate limits.
+
+
as of today, you MUST pass the following parameters:
+
+ - The
X-NISE-API header with a value of 20240218 in every request.
+ - The
Accept header with a value of application/json (if you want JSON instead of XML)
+
+
## scores search
+
score search is based on predicates. a predicate is a list of specifications/conditions to match results. predicates can be combined with operators such as AND and OR
+
+
## get single score
+
if you have a replay_id, you can retrieve all the information 'bout that score.
+
+ - ENDPOINT:
/api/score/{replay_id}
+ - METHOD: GET
+
+ Example:
+
curl -H "X-NISE-API: 20240218" -H "Accept: application/json" https://nise.moe/api/score/3808640439
+
+
+
diff --git a/nise-frontend/src/app/api/api.component.ts b/nise-frontend/src/app/api/api.component.ts
new file mode 100644
index 0000000..e467c32
--- /dev/null
+++ b/nise-frontend/src/app/api/api.component.ts
@@ -0,0 +1,22 @@
+import { Component } from '@angular/core';
+import {CalculatePageRangePipe} from "../../corelib/calculate-page-range.pipe";
+import {CuteLoadingComponent} from "../../corelib/components/cute-loading/cute-loading.component";
+import {DatePipe, DecimalPipe, NgForOf, NgIf} from "@angular/common";
+
+@Component({
+ selector: 'app-api',
+ standalone: true,
+ imports: [
+ CalculatePageRangePipe,
+ CuteLoadingComponent,
+ DatePipe,
+ DecimalPipe,
+ NgForOf,
+ NgIf
+ ],
+ templateUrl: './api.component.html',
+ styleUrl: './api.component.css'
+})
+export class ApiComponent {
+
+}
diff --git a/nise-frontend/src/app/app-routing.module.ts b/nise-frontend/src/app/app-routing.module.ts
index 940bc5b..02b9684 100644
--- a/nise-frontend/src/app/app-routing.module.ts
+++ b/nise-frontend/src/app/app-routing.module.ts
@@ -10,6 +10,7 @@ import {SearchComponent} from "./search/search.component";
import {ContributeComponent} from "./contribute/contribute.component";
import {BanlistComponent} from "./banlist/banlist.component";
import {ProfileComponent} from "./profile/profile.component";
+import {ApiComponent} from "./api/api.component";
const routes: Routes = [
{path: 'sus/:f', component: ViewSuspiciousScoresComponent, title: '/sus/'},
@@ -29,6 +30,8 @@ const routes: Routes = [
{path: 'banlist', component: BanlistComponent, title: '/ban/'},
{path: 'contribute', component: ContributeComponent, title: '/contribute/ <3'},
+ {path: 'api', component: ApiComponent, title: '/api/ explanation'},
+
{path: '**', component: HomeComponent, title: '/nise.moe/'},
];