Sonde Health Authentication API

The Authentication API from Sonde Health — 1 operation(s) for authentication.

Operations 1

POST /platform/api/v1/oauth2/token Create platform api oauth2 token #

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/sonde-health-authentication-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

sonde-health-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sonde Screening Authentication API
  description: Sonde API documentation for Sonde Services
  version: 1.0.0
tags:
- name: Authentication
paths:
  /platform/api/v1/oauth2/token:
    post:
      tags:
      - Authentication
      parameters:
      - in: header
        name: Authorization
        schema:
          type: string
        required: true
        description: The client must pass Basic64Encode(client_id:client_secret) in the authorization header through Basic HTTP authorization.
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/OauthAccessTokenRequest'
            example: grant_type=client_credentials&scope=sonde-platform/screening-results.list
      x-amazon-apigateway-integration:
        httpMethod: POST
        type: mock
      responses:
        200:
          description: Access is granted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OauthAccessTokenResponse'
        400:
          description: Request is malformed
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
      summary: Create platform api oauth2 token
      x-summary-source: derived
      operationId: postPlatformApiV1Oauth2Token
      x-operation-id-source: derived
components:
  schemas:
    OauthAccessTokenResponse:
      type: object
      properties:
        access_token:
          type: string
        expires_in:
          default: 3600
          type: integer
        token_type:
          type: string
    OauthAccessTokenRequest:
      properties:
        grant_type:
          description: It is fixed value
          type: string
          default: client_credentials
        scope:
          type: string
          enum:
          - sonde-service-admin/reports.read
          description: Oauth Scope for which the token should be generated
  securitySchemes:
    OAuth2:
      in: header
      type: apiKey
      name: Authorization
      x-amazon-apigateway-authtype: cognito_user_pools
      x-amazon-apigateway-authorizer:
        type: cognito_user_pools
        providerARNs:
        - Ref: CognitoUserPoolARN