CareAcademy Sign In Url API

The Sign In Url API from CareAcademy — 1 operation(s) for sign in url.

Operations 1

GET /sign_in_url Retrieve a sign in url for a given user for Single Sign On. #

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/careacademy-sign-in-url-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

careacademy-sign-in-url-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.10
  title: CareAcademy Sign In Url API
  description: The CareAcademy API allows integration partners to create seamless flows between their products and CareAcademy systems.
servers:
- url: https://staging.careacademy.com/api/v1
security:
- BasicAuth: []
tags:
- name: Sign In Url
paths:
  /sign_in_url:
    get:
      summary: Retrieve a sign in url for a given user for Single Sign On.
      parameters:
      - in: query
        name: userIntegrationId
        description: The external system's user ID. This is typically the ID of the user's record in the system making a call to the CareAcademy API.
        schema:
          type: string
      - in: query
        name: email
        description: The email address of the user being signed in.
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: object
                properties:
                  signInUrl:
                    type: string
                    description: A temporary url that a browser can be directed to in order to sign in a user to their CareAcademy dashboard.
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          description: Forbidden. The requested user is not allowed to sign in through SSO.
        '404':
          description: User not found.
      tags:
      - Sign In Url
      operationId: getSignInUrl
      x-operation-id-source: derived
components:
  responses:
    BadRequest:
      description: Bad Request. One or more required parameters are missing or invalid.
      content:
        '*/*':
          schema:
            type: object
            properties:
              additionalInformation:
                description: Information and warnings regarding any problems with the request. For general warnings, the parameterName value will be "_".
                type: array
                items:
                  type: object
                  properties:
                    parameterName:
                      type: string
                    description:
                      type: string
              errors:
                description: An array of field errors. For general errors, the parameterName value will be "_".
                type: array
                items:
                  type: object
                  properties:
                    parameterName:
                      type: string
                    errorDescription:
                      type: string
    UnauthorizedError:
      description: Authentication information is missing or invalid
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic