📂Getting Started
To get started with the isMalicious API, you'll need to understand the basic structure of our endpoints and how to make requests.
🥷 Authentication
Go to the https://ismalicious.com/auth/login and sign into your account.
🔐 Get your API keys
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate new API keys pair from the account page any time.

The best way to interact with our API is to use one of popular libraries such as:
🌍 Base URL Setup
All API requests are made to the following base URL: https://ismalicious.com/api/
🚀 Request Sample
You can make requests to the isMalicious API using any HTTP client, such as curl
, Postman, or your preferred programming language's HTTP(S) tool or library.
Example with curl
curl -X GET "https://ismalicious.com/api/check?ip=1.41.36.173" -H "X-API-KEY: your_api_key_here"
Now that you know the basics, let's dive into the specific endpoints.
Send your first check request 👇
✅Check ressourceLast updated