Neon Commerce Status API

The Status API from Neon Commerce — 1 operation(s) for status.

Operations 1

GET /status Get the current status of the Neon API #

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/neon-commerce-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

neon-commerce-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Status API
  description: The Status API can be used to check the status of Neon services
  version: 1.0.0
servers:
- url: https://status-api.neonpay.com
security: []
tags:
- name: Status
paths:
  /status:
    get:
      summary: Get the current status of the Neon API
      operationId: getStatus
      responses:
        '200':
          description: Current status of the Neon API
          content:
            application/json:
              schema:
                type: object
                readOnly: true
                required:
                - updatedAt
                - status
                properties:
                  updatedAt:
                    type: string
                    format: date-time
                    description: The timestamp of the last status update
                  status:
                    type: string
                    description: "The current status of the Neon API\nPossible values are:\n - ok: Services are fully operational\n - degraded: Services are most functioning, but increased latency\n - partial_outage: Some components are not working\n - major_outage: Critical functionality is unavailable\n"
                    enum:
                    - ok
                    - degraded
                    - partial_outage
                    - major_outage
      tags:
      - Status