API Documentation

Welcome to the API documentation. Below are the details of the available endpoints.

Endpoints

1. Get Name Meaning

Retrieve the meaning of a given name.

    
    GET /?name=geethu
    
    

Query Parameters:

Example Request:

    
    curl "https://api.mallunames.workers.dev/?name=naveen"
    
    

Python Example Request:

    
    import requests

    url = "https://api.mallunames.workers.dev/"
    params = {
        "name": "naveen"
    }

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

Example Response:

    
    {
        "name": "Naveen",
        "meaning": "New, young, or fresh"
    }
    
    

Authentication

This endpoint does not require an API key.

Request an API Key

This endpoint does not require an API key. If you need an API key for other endpoints, please email us with your request, and we will send you an API key.