Santé Académie Health Facility API

Health Facility

Operations 1

GET /connector/api/health-facility/search #

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/santeacademie-health-facility-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

santeacademie-health-facility-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: api Health Facility API
  description: api description
  version: '1.0'
tags:
- name: Health Facility
  description: Health Facility
paths:
  /connector/api/health-facility/search:
    get:
      tags:
      - Health Facility
      description: Return the JSON containing health facility search
      operationId: searchHealthFacility
      parameters:
      - name: HealthFacilitySearchQuery
        in: query
        description: Query to search for health facilities
        required: true
        schema:
          $ref: '#/components/schemas/HealthFacilitySearchQuery'
      responses:
        '200':
          description: The response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthFacilitySearchResult'
components:
  schemas:
    HealthFacilitySearchQuery:
      properties:
        query:
          type:
          - string
          - 'null'
        limit:
          type:
          - integer
          - 'null'
        offset:
          type:
          - integer
          - 'null'
      type: object
    HealthFacilitySearchResultItem:
      properties:
        rs:
          type: string
        siret:
          type: string
        address:
          type: string
        nofinesset:
          type: string
        nofinessej:
          type: string
        rslongue:
          type: string
        complrs:
          type: string
        compldistrib:
          type: string
        numvoie:
          type: string
        typvoie:
          type: string
        voie:
          type: string
        compvoie:
          type: string
        lieuditbp:
          type: string
        commune:
          type: string
        departement:
          type: string
        libdepartement:
          type: string
        ligneacheminement:
          type: string
        telephone:
          type: string
        categetab:
          type: string
        libcategetab:
          type: string
        categagretab:
          type: string
        libcategagretab:
          type: string
      type: object
    HealthFacilitySearchResult:
      properties:
        hits:
          type: array
          items:
            $ref: '#/components/schemas/HealthFacilitySearchResultItem'
        query:
          type: string
        processingTimeMs:
          type: integer
        limit:
          type: integer
        offset:
          type: integer
        estimatedTotalHits:
          type: integer
      type: object