Arkose Labs Edge API

Edge risk assessment

Operations 1

POST /api/edge/v1/{public_key} Assess an inbound request at the edge #

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/arkose-labs-edge-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

arkose-labs-edge-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arkose Labs Edge API
  version: v1
  description: Lightweight server-side detection API. The customer relays the inbound client HTTP request (method, url, headers, body) to Arkose Edge, which returns a risk assessment and allow/deny recommendation from consortium intelligence — for surfaces where client-side JavaScript/SDK cannot run (mobile backends, IoT, programmatic APIs). Generated by API Evangelist from the published Arkose Labs Edge API documentation.
  contact:
    name: Arkose Labs Support
    url: https://www.arkoselabs.com/support/
  x-apievangelist-method: generated
  x-apievangelist-source: https://developer.arkoselabs.com/docs/edge-api-request-parameters
servers:
- url: https://client-api.arkoselabs.com
  description: Arkose Edge API host
tags:
- name: Edge
  description: Edge risk assessment
paths:
  /api/edge/v1/{public_key}:
    post:
      operationId: edgeAssess
      summary: Assess an inbound request at the edge
      tags:
      - Edge
      parameters:
      - name: public_key
        in: path
        required: true
        schema:
          type: string
        description: Your Arkose Labs public key.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EdgeRequest'
      responses:
        '200':
          description: Risk assessment and allow/deny recommendation
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Bad request
components:
  schemas:
    EdgeRequest:
      type: object
      description: The inbound client HTTP request relayed to Edge.
      properties:
        headers:
          type: object
          description: HTTP headers from the client request (key-value pairs).
        method:
          type: string
          description: HTTP method used by the client (e.g., GET, POST).
        url:
          type: string
          description: The full URL the client requested.
        body:
          type: string
          description: The client request body, if any.
      required:
      - headers
      - method
      - url