Make your first API call to do.dev in under 2 minutes
This guide will get you from zero to your first API call in under 2 minutes.
Sign up at do.dev and navigate to the API Keys section in your dashboard. Create a new key with the scopes you need.
Let's look up information about a phone number using the Telco API:
curl -X GET "https://api.do.dev/v1/telco/lookup/2125551234" \
-H "Authorization: Bearer YOUR_API_KEY"{
"tn": "2125551234",
"npa": "212",
"nxx": "555",
"carrier": {
"ocn": "VZXX",
"name": "Verizon Communications",
"type": "ILEC"
},
"location": {
"rateCenter": "NEW YORK",
"state": "NY",
"country": "US"
}
}Now that you've made your first call, explore the full API: