xCures O Auth API

All API requests to xCures must provide an access token, retrieved via the standard OAuth authorization flow below.

Operations 1

POST /oauth/token Get 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/xcures-oauth-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

xcures-oauth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: xCures O Auth API
  description: '# Authentication

    Our API requires a Bearer Token in the `Authorization` header for auth.'
  version: V1
  x-logo:
    url: https://prod-xc-public-marketing.s3.us-west-2.amazonaws.com/xCures-emails-logo.png
servers:
- url: https://partner.xcures.com
tags:
- name: OAuth
  description: All API requests to xCures must provide an access token, retrieved via the standard OAuth authorization flow below.
paths:
  /oauth/token:
    post:
      operationId: PublicOAuthController_token
      summary: Get Token
      description: Obtain an access token that is authorized to make API calls.
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OAuthTokenRequestDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OAuthTokenResponseDto'
        '400':
          description: ''
        '401':
          description: ''
        '429':
          description: ''
      tags:
      - OAuth
components:
  schemas:
    OAuthTokenResponseDto:
      type: object
      properties:
        access_token:
          type: string
          description: The credential used to authenticate API requests.
        token_type:
          type: string
          example: Bearer
          description: The type of token being issued.
      required:
      - access_token
      - token_type
    OAuthTokenRequestDto:
      type: object
      properties:
        client_id:
          type: string
          format: uuid
          example: c8ec1d54-a85c-411f-aa12-fd3a7f2480f4
          description: Your API key's client ID.
        client_secret:
          type: string
          description: Your API key's client secret.
        grant_type:
          type: string
          example: client_credentials
          enum:
          - client_credentials
          description: The OAuth 2.0 grant type.
      required:
      - client_id
      - client_secret
      - grant_type
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http