Total Endpoints
4
Active Users
1,247
Total Requests
89.2K
Base URL
All API endpoints are relative to the base URL:
https://anisaoffc.biz.id
Authentication
Currently, our APIs are available without authentication. However, we recommend using appropriate rate limiting in your applications to prevent abuse.
Response Format
All API responses are returned in JSON format with a consistent structure:
{
"status": true, // boolean indicating success or failure
"creator": "SaaOfc", // creator information
"result": {} // the actual response data
}
In case of errors, the response will include an error message:
{
"status": false,
"creator": "SaaOfc",
"error": "Error message"
}
application/json
JSON data format for structured information
image/png
PNG image format with transparency support
image/jpeg
JPEG image format for photographs
text/plain
Plain text format for simple content
application/octet-stream
Binary data format for raw file downloads
OK
The request was successful.
Bad Request
The request was invalid or cannot be served.
Forbidden
The request is forbidden.
Too Many Requests
Rate limit exceeded.
Internal Server Error
An error occurred on the server.
AI APIs
Generate AI responses using HydroMind
Media Type
Parameters
Example Request (Fetch)
fetch('https://anisaoffc.biz.id/api/ai/hydromind', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
text: "Hello",
model: "@groq/qwen-2.5-32b",
responses: 1
}),
})
Example Request (cURL)
curl -X POST "https://anisaoffc.biz.id/api/ai/hydromind" -H "Content-Type: application/json" -d '{"text":"Hello","model":"@groq/qwen-2.5-32b","responses":"1"}'
Example Response
{
"status": true,
"creator": "SaaOfc",
"result": {
"text": "This is an AI-generated response to your prompt."
}
}
Generate AI responses using LuminAI
Media Type
Parameters
Example Request (Fetch)
fetch('https://anisaoffc.biz.id/api/ai/luminai?text=Hello')
Example Request (cURL)
curl -X GET "https://anisaoffc.biz.id/api/ai/luminai?text=Hello"
Example Response
{
"status": true,
"creator": "SaaOfc",
"result": {
"text": "This is an AI-generated response to your prompt."
}
}
Generate AI lyrics using LyricsIntoSong
Media Type
Parameters
Example Request (Fetch)
fetch('https://anisaoffc.biz.id/api/ai/lyricsgen?topic=value&genre=value&mood=value&structure=value&lang=value')
Example Request (cURL)
curl -X GET "https://anisaoffc.biz.id/api/ai/lyricsgen?topic=value&genre=value&mood=value&structure=value&lang=value"
Example Response
{
"status": true,
"creator": "SaaOfc",
"result": {
// Response data specific to this endpoint
}
}
Media APIs
Get a random Blue Archive image
Media Type
Example Request (Fetch)
fetch('https://anisaoffc.biz.id/api/random/ba')
Example Request (cURL)
curl -X GET "https://anisaoffc.biz.id/api/random/ba"
Example Response
// Binary image data returned with Content-Type: image/png