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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/stonex-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
openapi: 3.2.0
info:
title: Stonex Authentication API
version: '1.0'
description: 'Operations tagged Authentication across 2 of this provider''s published API definitions: stonex-clearing-openapi.yml, stonex-payments-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.clearing.stonex.com
description: StoneX Clearing Production
- url: https://api.clearing.uat.stonex.com
description: StoneX Clearing UAT (Test)
- url: https://fx-api.payments.stonex.com
description: StoneX Payments Production
- url: https://api.sandbox.payments.stonex.com
description: StoneX Payments Sandbox (UAT)
security:
- BearerAuth: []
tags:
- name: Authentication
description: OAuth 2.0 token management.
paths:
/auth/token:
post:
operationId: getAuthToken
summary: Get Authentication Token
description: Obtain a JWT access token using OAuth 2.0 client credentials. The token is valid for 10 hours and must be passed as a Bearer token in the Authorization header.
tags:
- Authentication
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- client_id
- client_secret
properties:
client_id:
type: string
description: OAuth 2.0 client ID.
client_secret:
type: string
description: OAuth 2.0 client secret.
grant_type:
type: string
enum:
- client_credentials
default: client_credentials
responses:
'200':
description: JWT access token returned.
content:
application/json:
schema:
$ref: '#/components/schemas/TokenResponse'
'401':
description: Invalid credentials.
servers:
- url: https://api.clearing.stonex.com
description: StoneX Clearing Production
- url: https://api.clearing.uat.stonex.com
description: StoneX Clearing UAT (Test)
components:
schemas:
TokenResponse:
type: object
properties:
access_token:
type: string
description: JWT Bearer access token.
token_type:
type: string
description: Token type (Bearer).
expires_in:
type: integer
description: Token expiry in seconds (36000 = 10 hours).
securitySchemes:
BearerAuth:
type: http
scheme: bearer
description: JWT token from /auth/token endpoint. Valid for 10 hours.
x-refined-from:
- stonex-clearing-openapi.yml
- stonex-payments-openapi.yml