Nexus APIs

Powerful API Solutions for Developers
Building the Next Generation of Digital Products

SERVER STATUS
19
Total APIs
Servers: Online
Offline: 0
Response: 45ms
Security: Excellent
Status: Excellent
LAST UPDATED
27
April 2025
Daily monitoring
Security scans
API endpoints
DB optimization
Next Update: 28 April
Apex Legends Player info NEW
Data services
An API that provides comprehensive Apex Legends player statistics, rankings, and performance analytics. This API is By - apexlegendsapi.com we have added this API to make it easier for developers to use.
https://nexusapi.cloud/API/Apex-users?key=YOUR_KEY&endpoint=player&username=Zer0&platform=PC
Apex Legends server status NEW
Data services
Gets Apex Legends server statuses This API is By - apexlegendsapi.com we have added this API to make it easier for developers to use.
https://nexusapi.cloud/API/Apex-Server-Stats?key=YOUR_KEY&endpoint=servers
Dead by Daylight Killer Info NEW
Data services
Gets Dead By Daylight Killer Information.
https://nexusapi.cloud/API/DeadByDaylight-Killer-info?key=YOUR_KEY&name=pig
Global Rates NEW
Data services
Real-time currency converter API with 150+ fiat currencies and 20+ cryptocurrencies, featuring customizable source currencies and reliable multi-source data.
https://nexusapi.cloud/API/currencies?key=YOUR_KEY&source=USD&target=EUR&amount=10
Minecraft Player Information NEW
Data services
This API provides detailed information about Minecraft players
https://nexusapi.cloud/API/minecraftuser?key=YOUR_KEY&endpoint=player&username=Notch
Minecraft Server Information NEW
Data services
Provides real-time information about any Minecraft server by querying it directly
https://nexusapi.cloud/API/minecraftserver.php?key=YOUR_KEY&address=msl.playskyward.gg
Weather
Data services
Current weather data for any location
https://nexusapi.cloud/API/weather?key=YOUR_KEY&location=Miami
Enhanced IP Lookup
Networking
Advanced details including geolocation, ASN and more
https://nexusapi.cloud/API/EnhancedIPLookup?key=YOUR_KEY&ip=8.8.8.8
Enhanced Phone Lookup
Networking
Comprehensive information about any phone number
https://nexusapi.cloud/API/EnhancedPhoneLookup?key=YOUR_KEY&phone=+15551234567&detail=premium&format=json
Enhanced Port Scanner
Networking
Scan multiple common ports on a target host
https://nexusapi.cloud/API/EnhancedPortScanner?key=YOUR_KEY&host=1.1.1.1
Geo IP
Networking
Get geographical information about an IP address
https://nexusapi.cloud/API/ipinfo?key=YOUR_KEY
IP Lookup UPDATED
Networking
Detailed information about any IP address
https://nexusapi.cloud/API/IPLookup?key=YOUR_KEY&ip=8.8.8.8
IP Validator
Networking
Check if an IP address is valid and get its type
https://nexusapi.cloud/API/IPValidator?key=YOUR_KEY&ip=1.1.1.1
Ping
Networking
Ping a host and measure response time
https://nexusapi.cloud/API/SinglePortScanner?key=YOUR_KEY&ip=8.8.8.8&port=80
Single Port Scanner
Networking
Check if a specific port is open on a host
https://nexusapi.cloud/API/SinglePortScanner?key=YOUR_KEY&ip=8.8.8.8&port=80
WHOIS History UPDATED
Networking
Historical WHOIS records for any domain
https://nexusapi.cloud/API/WHOISHistory?key=YOUR_KEY&domain=google.com
Enhanced IP Intelligence NEW
Security
Provides detailed information about IP addresses, including geolocation, network data, and security threat
https://nexusapi.cloud/API/ip-intelligence?key=YOUR_KEY&ip=8.8.8.8
License Key Generator NEW
Security
Create formatted license keys
https://nexusapi.cloud/API/LicenseKeyGenerator?key=YOUR_KEY&template=ABC??-DEF??-GHI??-JKL??&amount=5
Password Generator NEW
Security
Generate secure random passwords
https://nexusapi.cloud/API/PasswordGenerator?key=YOUR_KEY

API Documentation

Get started with our powerful APIs and build amazing applications

Getting Started

Welcome to the NexusAPI documentation. Our APIs provide powerful tools for network analysis, data lookup, and more. Each API endpoint is designed to be simple to use while providing comprehensive data.

To get started with NexusAPI:

  1. Obtain your API key from our Discord server
  2. Replace YOUR_KEY in the API URL with your personal key
  3. Make your request to the appropriate endpoint
  4. Process the returned JSON data in your application

All of our APIs return data in JSON format by default, making it easy to integrate with any application.

Rate Limits & Usage

Standard API keys include:

  • 1,000 requests per day
  • 5 requests per second
  • Access to all basic API endpoints

Premium API keys with higher limits are available. Contact us on Discord for more information about premium access options.

API Examples

Here are some examples of how to use our APIs in different programming languages:

JavaScript/Node.js Example:

fetch('https://nexusapi.cloud/API/ipinfo?key=YOUR_KEY')
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Python Example:

import requests

response = requests.get('https://nexusapi.cloud/API/ipinfo?key=YOUR_KEY')
data = response.json()
print(data)