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/nuvei-status-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: Nuvei 3DS Status API
description: 3D Secure 2 authentication endpoints supporting PSD2 SCA.
version: '1.0'
contact:
name: Nuvei Developer Support
url: https://docs.nuvei.com
servers:
- url: https://secure.safecharge.com/ppp/api/v1
description: Production
- url: https://ppp-test.nuvei.com/ppp/api/v1
description: Sandbox
tags:
- name: Status
description: Read-only transaction state.
paths:
/getPaymentStatus.do:
post:
tags:
- Status
summary: Get Payment Status
operationId: getPaymentStatus
description: Returns the final state of a payment. Should be called only at the end of payment processing.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/StatusRequest'
responses:
'200':
description: Payment status
content:
application/json:
schema:
$ref: '#/components/schemas/PaymentResponse'
components:
schemas:
StatusRequest:
allOf:
- $ref: '#/components/schemas/MerchantAuth'
- type: object
required:
- sessionToken
properties:
sessionToken:
type: string
MerchantAuth:
type: object
required:
- merchantId
- merchantSiteId
- timeStamp
- checksum
properties:
merchantId:
type: string
description: Merchant identifier assigned by Nuvei.
merchantSiteId:
type: string
description: Site identifier for the merchant.
clientRequestId:
type: string
description: Idempotent client-side identifier for the request.
timeStamp:
type: string
description: yyyyMMddHHmmss timestamp used in the checksum.
checksum:
type: string
description: SHA-256 of merchantId|merchantSiteId|clientRequestId|amount|currency|timeStamp|merchantSecretKey.
PaymentResponse:
type: object
properties:
sessionToken:
type: string
orderId:
type: string
userTokenId:
type: string
paymentOption:
type: object
transactionStatus:
type: string
enum:
- APPROVED
- DECLINED
- ERROR
- REDIRECT
- PENDING
gwErrorCode:
type: integer
gwErrorReason:
type: string
gwExtendedErrorCode:
type: integer
transactionType:
type: string
transactionId:
type: string
externalTransactionId:
type: string
authCode:
type: string
status:
type: string
enum:
- SUCCESS
- ERROR
reason:
type: string
errCode:
type: integer
merchantId:
type: string
merchantSiteId:
type: string
version:
type: string
clientRequestId:
type: string
internalRequestId:
type: integer
clientUniqueId:
type: string