nomoslynomosly
Image understanding API

Turn user-uploaded images into structured data your app can act on.

When your product receives a selfie, a receipt, a product photo, or any other image from a user, get back what your code needs, whether that is a match score, extracted text, or detected objects. No model training, no infrastructure to run.

Two portraits compared side by side with a similarity score, illustrating identity verification
Why teams use it

Software products receive images. Your code needs answers.

From the selfie a new user submits at signup, to the receipt an employee uploads for an expense, to the product photo a seller posts on a marketplace, your application needs to extract meaning from these images before it can act.

Identity flows

Onboarding, login, and recovery

Compare faces against a reference photo at signup, login, or step-up authentication. Score-based confidence so edge cases can route to a human reviewer.

User uploads

Photos and media submitted by your users

Categorize, moderate, and enrich images that customers upload before they hit a feed, a queue, or a search index.

Document intake

Receipts, IDs, and scanned forms

Pull text out of photographed paperwork to feed expense, accounts payable, and customer onboarding automation.

Capabilities

Everything you need to read meaning from an image.

nomosly exposes a focused set of operations through a single REST API. Every operation returns structured JSON ready for your application.

face/compare

Face comparison

Compare two images and receive a similarity score with confidence levels. Built for identity verification, access control, and account recovery.

face/detect

Face detection

Locate faces in an image with bounding boxes, age range, and emotion estimates. Useful for liveness checks and presence detection.

labels/detect

Label detection

Identify objects, scenes, and concepts. Common for content moderation, visual search, and automated catalog enrichment.

text/detect

Text extraction

Pull printed and handwritten text out of photos and scans. Built for receipts, IDs, forms, and signage.

Use cases

Production workloads across identity, moderation, finance, and retail.

nomosly is built for the workflows where images become decisions your software has to make, on every signup, every upload, every transaction.

ID-style headshot compared to a casual selfie with a similarity score, illustrating identity verification
Identity verification

Verify a selfie against an ID at signup

Match a real-time selfie against a government ID photo to admit new users in fintech, gambling, gig economy, and shared mobility products. Confidence scores let you auto-approve high-match cases and route the rest to manual review.

face/compareface/detect
Two product photos side by side, one approved with a green check and one flagged for review, illustrating content moderation
Content moderation

Moderate user uploads before they go live

Detect what is in user-submitted images before they appear on a marketplace, classifieds site, or social feed. Categorize for safety, policy, and topic so review queues only see what truly needs a human.

labels/detect
A paper receipt with extracted merchant, total, and currency values overlaid, illustrating document capture
Document capture

Read receipts and forms for finance workflows

Extract structured text from scanned receipts, invoices, and IDs to power expense reporting, accounts payable, and customer onboarding. Cuts out manual data entry for finance and operations teams.

text/detect
A red summer dress on a hanger with auto-generated descriptive labels overlaid, illustrating catalog enrichment
Catalog enrichment

Auto-tag product photos for search and discovery

Generate tags from product images at upload time to enrich e-commerce catalogs, improve on-site search relevance, and reduce the manual data entry merchants face during onboarding.

labels/detect
Integration

One HTTP request from upload to result.

Send an image. Get structured data back. No SDK or model hosting required.

Requestcurl
curl https://api.nomosly.com/v1/face/compare \
  -H "x-api-key: $API_KEY" \
  -H "content-type: application/json" \
  -d '{
    "sourceImage": "<base64>",
    "targetImage": "<base64>"
  }'
Response200 OK
{
  "faceMatches": [
    { "similarity": 98.4, "confidence": "HIGH" }
  ],
  "unmatchedFaces": [],
  "usage": { "totalCycleUsage": 142 }
}
Pricing

Pay per call. No subscription, no seats, no base fee.

Each capability is priced independently and volume discounts apply automatically as your usage grows.

Ready to launch

Ship visual workflows in production.

Create your workspace, generate scoped API keys, and integrate the platform into your product today.

nomosly · Image understanding API for identity, moderation, and OCR