Medcorder Nearby Doctor API
medcorder · Data
Returns doctors near a client given a lat/lon and autocomplete text.
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
Fetch a list of nearby medical providers
Fetch a list of nearby medical providers
https://api.apis.guru/v2/specs/medcorder.com/1.0.0/doctors?limit=50&search=hello&latitude=51.5074&longitude=-0.1278
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/medcorder.com/1.0.0/doctors?limit=50&search=hello&latitude=51.5074&longitude=-0.1278"
import requests
params = {
"limit": "50",
"search": "hello",
"latitude": "51.5074",
"longitude": "-0.1278"
}
response = requests.get(
"https://api.apis.guru/v2/specs/medcorder.com/1.0.0/doctors",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/medcorder.com/1.0.0/doctors');
url.searchParams.set('limit', '50');
url.searchParams.set('search', 'hello');
url.searchParams.set('latitude', '51.5074');
url.searchParams.set('longitude', '-0.1278');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/medcorder.com/1.0.0/doctors")
q := baseURL.Query()
q.Set("limit", "50")
q.Set("search", "hello")
q.Set("latitude", "51.5074")
q.Set("longitude", "-0.1278")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/medcorder.com/1.0.0/doctors")
uri.query = URI.encode_www_form({
"limit" => "50",
"search" => "hello",
"latitude" => "51.5074",
"longitude" => "-0.1278"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/medcorder.com/1.0.0/doctors?" . http_build_query([
"limit" => "50",
"search" => "hello",
"latitude" => "51.5074",
"longitude" => "-0.1278"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Medcorder Nearby Doctor API?
Medcorder Nearby Doctor API is a Data API. Developers commonly use data APIs for:
- enriching your app with third-party datasets
- building data pipelines and ETL workflows
- querying and searching large datasets
- powering research, analysis, and reporting tools
- syncing reference data into your own systems
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Medcorder Nearby Doctor API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide