Tuva Health Persons API

The persons API from Tuva Health — 2 operation(s) for persons.

Business capability
Master Patient Index Management BC-2900.10

Operations 2

GET /api/v1/persons Retrieve persons #
GET /api/v1/persons/{id} Retrieve person by ID #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/tuva-health-persons-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

tuva-health-persons-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tuva EMPI Persons API
  version: 1.0.0
tags:
- name: persons
paths:
  /api/v1/persons:
    get:
      operationId: persons_retrieve
      description: Get/search for persons.
      summary: Retrieve persons
      tags:
      - persons
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPersonsResponse'
          description: ''
  /api/v1/persons/{id}:
    get:
      operationId: persons_retrieve_2
      description: Get Person by ID.
      summary: Retrieve person by ID
      parameters:
      - in: path
        name: id
        schema:
          type: string
        required: true
      tags:
      - persons
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPersonResponse'
          description: ''
components:
  schemas:
    PersonRecord:
      type: object
      properties:
        id:
          type: string
        person_id:
          type: string
        created:
          type: string
          format: date-time
        person_updated:
          type: string
          format: date-time
        matched_or_reviewed:
          type: boolean
        data_source:
          type: string
        source_person_id:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        sex:
          type: string
        race:
          type: string
        birth_date:
          type: string
        death_date:
          type: string
        social_security_number:
          type: string
        address:
          type: string
        city:
          type: string
        state:
          type: string
        zip_code:
          type: string
        county:
          type: string
        phone:
          type: string
      required:
      - address
      - birth_date
      - city
      - county
      - created
      - data_source
      - death_date
      - first_name
      - id
      - last_name
      - matched_or_reviewed
      - person_id
      - person_updated
      - phone
      - race
      - sex
      - social_security_number
      - source_person_id
      - state
      - zip_code
    PersonDetail:
      type: object
      properties:
        id:
          type: string
        created:
          type: string
          format: date-time
        version:
          type: integer
        records:
          type: array
          items:
            $ref: '#/components/schemas/PersonRecord'
      required:
      - created
      - id
      - records
      - version
    GetPersonResponse:
      type: object
      properties:
        person:
          $ref: '#/components/schemas/PersonDetail'
      required:
      - person
    GetPersonsResponse:
      type: object
      properties:
        persons:
          type: array
          items:
            $ref: '#/components/schemas/PersonSummary'
      required:
      - persons
    PersonSummary:
      type: object
      properties:
        id:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        data_sources:
          type: array
          items:
            type: string
      required:
      - data_sources
      - first_name
      - id
      - last_name