Alloy Reviews API

Manual review notes and decisions on entities.

Operations 4

GET /entities/{entity_token}/reviews List Entity Reviews #
POST /entities/{entity_token}/reviews Create an Entity Review #
GET /entities/{entity_token}/reviews/{review_token} Get an Entity Review #
POST /entities/{entity_token}/reviews/{review_token}/notes Add a Note to an Entity Review #

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/alloy-com-reviews-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

alloy-com-reviews-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Alloy Reviews API
  description: 'The Alloy API is the programmatic surface for Alloy''s identity decisioning

    platform. It exposes the resources behind Alloy''s KYC, KYB, AML, fraud,

    credit, and ongoing-monitoring workflows used by banks, credit unions, and

    fintechs.


    The API is organized around evaluations, journey applications, entities

    (persons and businesses), bank accounts, documents, events, cases,

    investigations, custom lists, published attributes, and webhooks. Sandbox

    and production environments are exposed as two distinct base URLs.

    '
  version: '1.0'
  contact:
    name: Alloy Developer Support
    url: https://help.alloy.com
  license:
    name: Proprietary
    url: https://www.alloy.com/tos
servers:
- url: https://sandbox.alloy.co/v1
  description: Sandbox environment
- url: https://api.alloy.co/v1
  description: Production environment
security:
- basicAuth: []
- bearerAuth: []
tags:
- name: Reviews
  description: Manual review notes and decisions on entities.
paths:
  /entities/{entity_token}/reviews:
    parameters:
    - name: entity_token
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Reviews
      summary: List Entity Reviews
      operationId: getEntityReviews
      responses:
        '200':
          description: Reviews
    post:
      tags:
      - Reviews
      summary: Create an Entity Review
      operationId: postEntityReview
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Review created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Review'
  /entities/{entity_token}/reviews/{review_token}:
    parameters:
    - name: entity_token
      in: path
      required: true
      schema:
        type: string
    - name: review_token
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Reviews
      summary: Get an Entity Review
      operationId: getEntityReview
      responses:
        '200':
          description: Review
  /entities/{entity_token}/reviews/{review_token}/notes:
    parameters:
    - name: entity_token
      in: path
      required: true
      schema:
        type: string
    - name: review_token
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Reviews
      summary: Add a Note to an Entity Review
      operationId: postEntityReviewNote
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Note'
      responses:
        '201':
          description: Note added
components:
  schemas:
    Note:
      type: object
      properties:
        note_token:
          type: string
        body:
          type: string
        created_at:
          type: string
          format: date-time
    Review:
      type: object
      properties:
        review_token:
          type: string
        decision:
          type: string
        notes:
          type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication with workflow or account-level API key as username and secret as password.
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 bearer token obtained via the OAuth endpoints.