Find an API

Search public APIs with auth details & Postman guides

← All APIs

PatientView

patientview · Company

Company No Auth Free & Open API

The recommended REST API endpoints to be used when integrating with PatientView

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET getPatientManagementDiagnoses

getPatientManagementDiagnoses

https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/diagnoses

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/diagnoses"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/diagnoses",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/diagnoses';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/diagnoses"
	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/patientview.org/1.0/patientmanagement/diagnoses")

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/patientview.org/1.0/patientmanagement/diagnoses";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET getPatientManagementLookupTypes

getPatientManagementLookupTypes

https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/lookuptypes

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/lookuptypes"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/lookuptypes",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/lookuptypes';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/patientview.org/1.0/patientmanagement/lookuptypes"
	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/patientview.org/1.0/patientmanagement/lookuptypes")

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/patientview.org/1.0/patientmanagement/lookuptypes";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get Observations of Multiple Types For a User

Given a User ID and search parameters, retrieve a page of observations.

https://api.apis.guru/v2/specs/patientview.org/1.0/user/{userId}/observations?code=example&limit=10&offset=0&orderDirection=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/patientview.org/1.0/user/{userId}/observations?code=example&limit=10&offset=0&orderDirection=example"
import requests
params = {
    "code": "example",
    "limit": "10",
    "offset": "0",
    "orderDirection": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/patientview.org/1.0/user/{userId}/observations",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/patientview.org/1.0/user/{userId}/observations');
url.searchParams.set('code', 'example');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('orderDirection', 'example');

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/patientview.org/1.0/user/{userId}/observations")
	q := baseURL.Query()
	q.Set("code", "example")
	q.Set("limit", "10")
	q.Set("offset", "0")
	q.Set("orderDirection", "example")
	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/patientview.org/1.0/user/{userId}/observations")
uri.query = URI.encode_www_form({
  "code" => "example",
  "limit" => "10",
  "offset" => "0",
  "orderDirection" => "example"
})

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/patientview.org/1.0/user/{userId}/observations?" . http_build_query([
    "code" => "example",
    "limit" => "10",
    "offset" => "0",
    "orderDirection" => "example"
]);
$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

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with PatientView?

PatientView is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. PatientView is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗