Quick Start
Your first API call in 2 minutes. No experience required.
2
Get your API key
After signing up, go to your Dashboard and create an API key.
Your key will look like: mak-a1b2c3d4...
3
Make your first call
Copy this command and replace YOUR_KEY with your API key:
curl
curl -X POST \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "carlos alberto", "country": "CO"}' \
"https://mediavox.co/mvapi/api/v1/datatools/names/standardize"
Python
import requests
r = requests.post("https://mediavox.co/mvapi/api/v1/datatools/names/standardize",
headers={"X-API-Key": "YOUR_KEY"},
json={"text": "carlos alberto", "country": "CO"})
print(r.json())
JavaScript
const r = await fetch("https://mediavox.co/mvapi/api/v1/datatools/names/standardize", {
method: "POST",
headers: { "X-API-Key": "YOUR_KEY", "Content-Type": "application/json" },
body: JSON.stringify({ text: "carlos alberto", country: "CO" })
});
console.log(await r.json());
4
Explore more
Try without signing up: Use the Playground with "Try without API key" to test demo endpoints instantly.