Overview

Welcome back!

Manage your account and monitor your API usage here.

Current Tier
-
Daily Limit
-
Used Today
-
Remaining
-

Usage Today

0 / 0 requests used 0%

API Keys

Use this key to authenticate your requests to KuroNeko API.

Keep this key secret. If compromised, anyone can use your quota.

Integration Examples

curl "https://sylvatica.my.id/api/SOME_ENDPOINT?apikey=YOUR_API_KEY"
fetch("https://sylvatica.my.id/api/SOME_ENDPOINT?apikey=YOUR_API_KEY")
  .then(response => response.json())
  .then(data => console.log(data));
import requests

url = "https://sylvatica.my.id/api/SOME_ENDPOINT"
params = {"apikey": "YOUR_API_KEY"}

response = requests.get(url, params=params)
print(response.json())
package main

import (
	"fmt"
	"io/ioutil"
	"net/http"
)

func main() {
	url := "https://sylvatica.my.id/api/SOME_ENDPOINT?apikey=YOUR_API_KEY"
	resp, _ := http.Get(url)
	defer resp.Body.Close()
	body, _ := ioutil.ReadAll(resp.Body)
	fmt.Println(string(body))
}

Usage Analytics

Track your API consumption over the last 7 days.

Last 7 Days Activity

Tier Comparison

Tier Daily Limit Features
Common 60 requests Standard Access
Silver 150 requests Faster Response
Gold 300 requests Priority Access
Platinum 500 requests Premium Endpoints
Ultra 1000+ requests Maximum Priority

Account Settings

Manage your profile and security settings.