https://mlbb-api.aimar.id/v1
All endpoints except /health-check require API key authentication. Include the API key in the Authorization header of your request.
There are two types of API keys available:
| def rc4(key, data): | |
| S = list(range(256)) | |
| j = 0 | |
| for i in range(256): | |
| j = (j + S[i] + key[i % len(key)]) % 256 | |
| S[i], S[j] = S[j], S[i] | |
| i = j = 0 | |
| result = [] |