Welcome to the API documentation. Below are the details of the available endpoints.
Retrieve the meaning of a given name.
GET /?name=geethu
Query Parameters:
name: The name for which you want to retrieve the meaning.
curl "https://api.mallunames.workers.dev/?name=naveen"
import requests
url = "https://api.mallunames.workers.dev/"
params = {
"name": "naveen"
}
response = requests.get(url, params=params)
data = response.json()
print(data)
{
"name": "Naveen",
"meaning": "New, young, or fresh"
}
This endpoint does not require 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.