Diligent Instant Screening (experimental) API

Instant Website Screening API

Operations 1

POST /screen Screen a website instantly for operational status (Experimental)

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/diligent-instant-screening-experimental-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

diligent-instant-screening-experimental-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.6.0
  title: Diligent CDD Instant Screening (experimental) Instant Screening (experimental) API
  description: 'Download Postman collection [here](https://docs.godiligent.ai/files/postman_collection.json).

    '
servers:
- url: https://api.godiligent.ai
  description: Production
- url: https://api.sandbox.godiligent.ai
  description: Sandbox
security:
- xApiKey: []
tags:
- name: Instant Screening (experimental)
  description: Instant Website Screening API
paths:
  /screen:
    post:
      summary: Screen a website instantly for operational status (Experimental)
      tags:
      - Instant Screening (experimental)
      x-badges:
      - name: Beta
        position: before
        color: purple
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - website
              properties:
                website:
                  type: string
                  format: uri
                  example: https://example-store.com
      responses:
        '200':
          description: Successful screening result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScreeningResponse'
        '400':
          description: Invalid input
        '500':
          description: Server error
components:
  schemas:
    ScreeningResponse:
      type: object
      required:
      - run_id
      - website
      - screened_at
      - platform
      - operational_status
      properties:
        run_id:
          type: string
          description: Unique identifier for this screening run
          example: run_123456789
        website:
          type: string
          format: uri
          example: https://example-store.com
        screened_at:
          type: string
          format: date-time
          example: '2025-03-31T12:34:56Z'
        platform:
          type: string
          enum:
          - SHOPIFY
          - WOOCOMMERCE
          - NOPCOMMERCE
          - ZID
          - SALLA
          - WIZISHOP
          - MAGENTO
          - OXID
          - PRESTASHOP
          - CUSTOM
          description: Detected platform of the website
          example: SALLA
        operational_status:
          type: object
          required:
          - is_active
          - explanation
          properties:
            is_active:
              type: boolean
              example: false
            explanation:
              type: string
              example: The message indicates that the store is currently under maintenance, which is a clear indicator of a non-operational status.
  securitySchemes:
    xApiKey:
      type: apiKey
      name: X-API-KEY
      in: header