CodeProject Vision-Face API

Face detection, comparison, registration, and recognition.

Operations 6

POST /v1/vision/face Detect faces in an image #
POST /v1/vision/face/match Compare two face images for similarity #
POST /v1/vision/face/list List registered users for face recognition #
POST /v1/vision/face/register Register face images for a user #
POST /v1/vision/face/delete Remove a registered user #
POST /v1/vision/face/recognize Identify faces in an image against the registered set #

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/codeproject-vision-face-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

codeproject-vision-face-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CodeProject.AI Server Vision Face API
  description: CodeProject.AI Server is a self-contained, self-hosted, free and open-source AI service that exposes computer-vision, audio, NLP, and model-training capabilities through a local HTTP REST API. It runs on Windows, macOS, Linux, Raspberry Pi, NVIDIA Jetson, OrangePi, and as a Docker container, and is most often integrated with home-automation and surveillance platforms (Blue Iris, Home Assistant, Agent DVR) for object detection, face recognition, ALPR (license-plate), and scene classification. All endpoints are POST and accept multipart/form-data uploads.
  version: '2.9'
  contact:
    name: CodeProject.AI Server
    url: https://www.codeproject.com/AI/
  license:
    name: GPL-3.0
    url: https://github.com/codeproject/CodeProject.AI-Server/blob/main/LICENSE
servers:
- url: http://localhost:32168
  description: Default local CodeProject.AI Server endpoint
tags:
- name: Vision-Face
  description: Face detection, comparison, registration, and recognition.
paths:
  /v1/vision/face:
    post:
      operationId: detectFaces
      summary: Detect faces in an image
      tags:
      - Vision-Face
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - image
              properties:
                image:
                  type: string
                  format: binary
                min_confidence:
                  type: number
                  format: float
      responses:
        '200':
          description: Face detection result
  /v1/vision/face/match:
    post:
      operationId: matchFaces
      summary: Compare two face images for similarity
      tags:
      - Vision-Face
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - image1
              - image2
              properties:
                image1:
                  type: string
                  format: binary
                image2:
                  type: string
                  format: binary
      responses:
        '200':
          description: Match result
  /v1/vision/face/list:
    post:
      operationId: listRegisteredFaces
      summary: List registered users for face recognition
      tags:
      - Vision-Face
      responses:
        '200':
          description: Registered users
  /v1/vision/face/register:
    post:
      operationId: registerFace
      summary: Register face images for a user
      tags:
      - Vision-Face
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - userid
              - image
              properties:
                userid:
                  type: string
                image:
                  type: string
                  format: binary
      responses:
        '200':
          description: Registration result
  /v1/vision/face/delete:
    post:
      operationId: deleteFace
      summary: Remove a registered user
      tags:
      - Vision-Face
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - userid
              properties:
                userid:
                  type: string
      responses:
        '200':
          description: Deletion result
  /v1/vision/face/recognize:
    post:
      operationId: recognizeFaces
      summary: Identify faces in an image against the registered set
      tags:
      - Vision-Face
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - image
              properties:
                image:
                  type: string
                  format: binary
                min_confidence:
                  type: number
                  format: float
      responses:
        '200':
          description: Recognition result
components:
  securitySchemes:
    none:
      type: apiKey
      in: header
      name: X-Disabled
      description: CodeProject.AI Server runs locally and does not require authentication by default. Operators are expected to keep the service on a private network or behind their own reverse proxy.
externalDocs:
  description: CodeProject.AI Server documentation
  url: https://codeproject.github.io/codeproject.ai/