Introducing the PixLab Mind Map App — Visual Thinking, Unleashed

We’re thrilled to announce the official release of the PixLab Mind Map App, a powerful, intuitive, and completely free visual workspace designed to help you organize ideas, boost creativity, and accelerate productivity. Whether you're brainstorming solo or collaborating with your team, PixLab Mind Map makes visual thinking effortless and accessible.

MindMap App


Why PixLab Mind Map?

The modern workflow is visual. That’s why we created a tool that matches the speed of thought — one that’s elegant, frictionless, and incredibly fast. PixLab Mind Map was built for students, creators, entrepreneurs, and professionals who need a flexible and distraction-free canvas to bring their ideas to life.


Key Features

  • Drag-and-Drop Simplicity
    Instantly create, connect, and customize nodes on a clean, responsive canvas.
  • Real-Time Collaboration
    Work together live with your team — share feedback and ideas instantly.
  • Smart Templates
    Choose from a growing library of ready-to-use templates for projects, education, planning, and more.
  • Dark Mode Ready
    Built to reduce eye strain for late-night creativity sessions.
  • Secure by Design
    We encrypt your sessions, auto-delete temp data, and never sell your information. All data is saved on your local storage, no cloud sync is performed.

Who Is It For?

  • Students – Organize lecture notes and exam plans visually
  • Educators – Map out curriculum and lesson flows
  • Teams – Plan sprints, roadmap features, and capture standups
  • Writers & Creators – Develop plot outlines or content strategies
  • Everyone – Capture daily thoughts and to-dos visually

💡 Built on PixLab’s Vision for Simpler Tools

PixLab is committed to delivering beautifully simple, privacy-first AI tools for modern teams. The Mind Map App is the latest addition to our growing ecosystem, and we’re just getting started.


🎉 Try It Free — Right Now

There’s no signup wall. No hidden costs. No installs.

👉 Launch the app: https://mindmap.pixlab.io
👉 Learn more: https://pixlab.io/mindmap-maker


Thank you to our early users for your feedback, support, and excitement. We can't wait to see what you'll build with PixLab Mind Map.

Explore the New PixLab Vision Platform VLM API Endpoints

PixLab’s Vision VLM Platform introduces a groundbreaking set of Vision Language Model (VLM) endpoints that combine natural language processing and computer vision in a simple, developer-friendly API suite.

PixLab Vision Platform

From querying images and parsing complex documents to generating PDFs and extracting ID data, the PixLab VLM API makes it easy to integrate intelligent image and document analysis into your own apps.


Vision Language Model Endpoints

These endpoints allow your application to understand images and video frames with natural language intelligence.

  • /query – Ask natural language questions about images and receive contextual answers
  • /describe – Get a natural language description of an image
  • /tagimg – Retrieve tags describing the image content
  • /detect – Detect and localize objects in the image
  • /vocr – OCR via vision models for printed text
  • /nsfw – Detect explicit content in media

Unstructured Document Parsing

Parse unstructured documents like invoices, receipts, and contracts using VLM-powered tools.

  • /llm-parse – Extract data from complex document layouts using a user-defined schema

Embedding APIs

Turn your content into machine-understandable vectors for search, indexing, and matching.

  • /txt-embed – Generate semantic embeddings from raw text
  • /img-embed – Generate vector embeddings from images

These endpoints are perfect for building your own AI-powered similarity search or recommendation systems.


Image Processing & Background Removal

PixLab also provides classic computer vision capabilities enhanced by AI.

  • /bg-remove – Remove background or unwanted objects from images
  • /docscan – Scan and extract JSON data from over 11,000 supported ID document types from 200+ countries
  • /nsfw – Pixelate or block NSFW content automatically

PDF Generation & Conversion

Create and manipulate PDF documents programmatically using these SDK-free endpoints:

  • /pdfgen – Generate media-rich PDFs from HTML or Markdown
  • /pdftoimg – Convert PDF files into image previews

LLM Tool Calling Infrastructure

PixLab provides built-in tools for enhancing your LLM pipeline:

  • /llm-tool – Get a list of tools callable from your LLM
  • /tool-call – Execute a tool call based on LLM output

These endpoints enable your LLM agent to execute functions dynamically and return results within the same context.


System Tools & Metadata

Helpful utility endpoints for checking server health and supported formats:

  • /status – View current system status
  • /about – Get PixLab version & license info
  • /extension – Retrieve supported file extensions

Explore the Full API Suite

PixLab offers over 150 RESTful endpoints for vision, media, and document automation tasks. Visit the following links to dive deeper:


Final Thoughts

Whether you're working on an AI productivity suite, eKYC onboarding, or document automation pipeline, PixLab’s VLM API delivers powerful, production-ready tools in minutes. All endpoints are accessible via secure HTTP requests and require no proprietary SDKs.

Get started by signing up for an API key at PixLab Console and explore what's possible with Vision Language Models.

Build smarter apps — faster.

New FACEIO REST API Endpoints for Face Verification & Age Estimation

We're excited to announce the release of two new REST API endpoints from FACEIO that extend the power of our facial recognition technology beyond browser-based widget instantiations.

FACEIO Integration

You can now leverage FACEIO's advanced face matching and age detection models entirely via REST API, without requiring frontend JavaScript integration or widget rendering. These endpoints are ideal for server-side face verification and age validation workflows such as identity checks, restricted access control, and user segmentation.


Face Verification API – faceverify

The faceverify API endpoint allows you to programmatically compare two face images and determine if they belong to the same individual—no prior enrollment required.

✅ Key Features:

  • Compare faces in two images
  • No FACEIO Widget or user session needed
  • No enrollment required
  • Fully memory-based (RAM) processing with auto image deletion
  • Privacy-first: no storage, logs, or persistent caching

📥 How it works:

Send a POST request with two base64-encoded face images: - src: Base64 of the first face image - target: Base64 of the second face image

Each image must contain only one face. If your image contains multiple faces, extract the target face using the PixLab CROP API ↗.

Example Use Case:

  • Comparing a selfie against an uploaded ID or reference image in tandem with the PixLab Document Scanner API Endpoint ↗
  • Face matching for duplicate detection or system re-entry checks
{
  "src": "data:image/jpeg;base64,...",
  "target": "data:image/jpeg;base64,..."
}

The API returns a JSON object with the similarity score and a match boolean.


Age & Gender Detection API – agecheck

The agecheck endpoint allows you to estimate the age and gender of a person from a single uploaded image that is ideal for access control, compliance, and content gating.

✅ Key Features:

  • Estimate age and gender from a single face image
  • No prior enrollment or widget interaction required
  • Memory-only (RAM) processing
  • No persistent storage or logging

📥 How it works:

Send a POST request with the following parameter: - src: A base64-encoded image containing a single visible face

{
  "src": "data:image/jpeg;base64,..."
}

The API responds with estimated age, gender, and confidence scores.

Example Use Case:

  • Verifying user age for gated content or age-based access
  • Estimating demographic data during user registration
  • Segmenting users based on estimated age or gender

🔒 Privacy & Security First

Both endpoints operate in-memory only and follow strict privacy measures. Images are processed and then immediately purged, no logs, no storage, and no data retention. This aligns fully with our Security Best Practices.


📚 Ready to Build?

You can use the new FACEIO REST APIs with any backend that supports HTTP POST requests and base64 data encoding.

For implementation guides, authentication headers, and full request/response examples, refer to the official documentation:


Start building face-powered features into your backend today.


FACEIO – Secure, Passwordless Authentication for Websites and Web Apps FACEIO offers secure, cross-browser, passwordless authentication via facial recognition. Streamline access control and enhance user experience with our face recognition login solution.

PixLab API 2 Released with new API Portal and Over 150 Endpoints

PixLab Logo

The development team is thrilled to announce the release of PixLab API 2, a massive upgrade to our machine vision and media processing platform with now featuring a brand-new API Portal and over 150 powerful endpoints designed for businesses, developers, and creators.

From document extraction APIs, background removal, and dynamic PDF creation plus a brand new Vision Platform backed by state-of-the-art vision-language models, PixLab API 2 offers unmatched capabilities to analyze, transform, and automate visual content at scale.

👉 Explore the new API Portal now: pixlab.io/api-portal

👉 Explore the comprehensive list of API endpoints and their documentation: pixlab.io/api-endpoints


What’s New in PixLab API 2?

✅ All-New Developer Portal

  • Modern UI for key management, usage monitoring, and testing API calls in real time.
  • Comprehensive API Reference & Endpoint List with code samples and quickstart guides for every service.

🔍 Featured API Categories & Endpoints

ID Scan & Extract API

Scan official documents effortlessly with PixLab’s ID Scan & Extract API: - Comprehensive ID Support: Quickly scan & extract data from passports, driver's licenses, and 11,000+ document types from 197+ countries. - Structured JSON Output: Get parsed ID fields (name, DOB, MRZ, face, etc.) in a clean, machine-readable format.

👉 Explore DOCSCAN Documentation


FACEIO – Face Recognition & Authentication

Secure and frictionless passwordless authentication: - Facial Login: Enable seamless access with facial authentication. - Liveness Detection: Block spoofing with advanced anti-fraud checks. - Age Verification: Instantly validate user age for compliance.

👉 FACEIO Integration Guide


🖼️ Background Removal API

Remove image backgrounds with pixel-perfect precision: - Ultra-Fast Processing: Background-free images in seconds. - Automated & Scalable: Integrate into any web or mobile app.

👉 View Background Removal Docs

Try also the bulk version: BG Remove App ↗


NSFW & Content Moderation API

Keep your platform safe and compliant: - Blur, Pixelate, or Block harmful images or frames. - Detect adult, violent, or graphic content using advanced AI models.

👉 Content Moderation Docs


👁️‍🗨️ Vision-Language Models (VLMs)

Check out these insights from documents using Vision + NLP via the Vision Platform: - Document understanding with layout awareness - Great for invoices, contracts, ID cards, and more. Featured new Vision API endpoints:

👉 and a whole lot more Explore Vision APIs


📄 Rich PDF Generation API

Create beautiful PDFs at scale:

  • PDFGEN Endpoint: Convert HTML/Markdown to professional PDFs.
  • PDFTOIMG Endpoint: Preview and convert PDFs to image formats, as documented here.

👉 View Rich PDF Generation APIs


🛠️ Online Tools Backed by PixLab APIs

Explore our growing suite of web apps, each powered by PixLab’s infrastructure:


For Developers, Creators, and Businesses

PixLab API version 2 is now production-ready, SDK-free, and tightly integrated, making it ideal for:

  • Fintechs & KYC providers
  • E-commerce & SaaS platforms
  • AI developers & researchers
  • Content creators & automation teams

🔑 Get Your API Key & Start Your Integration Phase

Head to the PixLab Console to:

  • Generate your first API key
  • Integrate with over 150+ endpoints
  • Access complete documentation & live API testing tools

Join thousands of developers and businesses using PixLab to power the next generation of intelligent visual applications.

🧠 Build smarter, automate faster, and scale confidently with PixLab API 2.

The PixLab Team

Introducing the New DOCSCAN API - Vision-Powered, SDK-Free, and Easier Than Ever

The PixLab Development Team is thrilled to announce the release of the next-generation DOCSCAN API, the core engine behind the newly rebranded PixLab ID Scan Platform.

Built from the ground up with Vision Language Models and hosted on the powerful PixLab Vision infrastructure, this update brings unmatched simplicity, security, and intelligence to identity document processing.

🌍 A Platform Re-imagined

Say goodbye to complex SDK integrations. The new DOCSCAN API requires no client-side SDKs, just a single HTTPS-enabled REST endpoint that supports both GET and POST requests. This means you can call DOCSCAN from any programming environment, whether you're using Python, Java, PHP, Go, or even a shell script.

⚡ What's New in This Version?

✅ Powered by Vision Language Models

The new DOCSCAN API harnesses the full power of PixLab’s Vision Language Models to extract structured, high-quality data from scanned documents with increased accuracy and robustness.

✅ No SDK Required

Forget installing SDKs or maintaining device-specific libraries. DOCSCAN is pure REST—simple, fast, and universal.

✅ Single Endpoint Simplicity

Use a single, unified API endpoint for both document scanning and data extraction. No need to juggle multiple APIs or chained requests.

✅ Supports GET & POST

Whether you prefer URL-based GET requests or multipart POST uploads, DOCSCAN supports both with full flexibility.

✅ TLS 1.3 Secured

All API traffic is encrypted end-to-end using TLS 1.3, ensuring maximum security and compliance from the first byte.

🚀 Built for Developers

The updated documentation at pixlab.io/id-scan-api/docscan has been completely restructured to be developer-first. Clear examples, copy-ready code snippets, and real-world integration guides will help you get up and running in minutes.

🧩 Use Cases

  • ID verification in finance, healthcare, or government
  • Digital onboarding for apps and services
  • Automated customer registration flows
  • Global document scanning with consistent output formats

🛠 Start Building Today

Head to the PixLab Console to generate your API key and begin integrating the new DOCSCAN API in minutes.

Whether you're modernizing your on-boarding flow or automating ID verification at scale, the new DOCSCAN API offers unmatched speed, simplicity, and intelligence—without the SDK overhead.

🔗 Learn more: pixlab.io/id-scan-api/
📚 REST API Documentation: pixlab.io/id-scan-api/docscan

🌍 Universal Document Support

The DOCSCAN API provides robust support for a wide array of officially issued identification documents. This includes, but is not limited to:

  • Passports
  • ID Cards (Citizen ID, Resident ID, Immigration Card, etc.)
  • Driving Licenses
  • Visas
  • Birth & Death Certificates

The API covers documents from nearly all UN-recognized countries, offering unparalleled versatility. This release expands the API's capabilities to handle over 11,094 ID document variations originating from more than 197 countries. Below is a list of supported countries by DOCSCAN :

  • Afghanistan
  • Albania
  • Algeria
  • Andorra
  • Angola
  • Antigua and Barbuda
  • Argentina
  • Armenia
  • Australia
  • Austria
  • Azerbaijan
  • Bahamas
  • Bahrain
  • Bangladesh
  • Barbados
  • Belarus
  • Belgium
  • Belize
  • Benin
  • Bhutan
  • Bolivia
  • Bosnia and Herzegovina
  • Botswana
  • Brazil
  • Brunei
  • Bulgaria
  • Burkina Faso
  • Burundi
  • Cabo Verde
  • Cambodia
  • Cameroon
  • Canada
  • Central African Republic
  • Chad
  • Chile
  • China
  • Colombia
  • Comoros
  • Congo (Brazzaville)
  • Congo (Kinshasa)
  • Costa Rica
  • Cote d'Ivoire
  • Croatia
  • Cuba
  • Cyprus
  • Czechia
  • Denmark
  • Djibouti
  • Dominica
  • Dominican Republic
  • Ecuador
  • Egypt
  • El Salvador
  • Equatorial Guinea
  • Eritrea
  • Estonia
  • Eswatini
  • Ethiopia
  • Fiji
  • Finland
  • France
  • Gabon
  • Gambia
  • Georgia
  • Germany
  • Ghana
  • Greece
  • Grenada
  • Guatemala
  • Guinea
  • Guinea-Bissau
  • Guyana
  • Haiti
  • Honduras
  • Hungary
  • Iceland
  • India
  • Indonesia
  • Iran
  • Iraq
  • Ireland
  • Israel
  • Italy
  • Jamaica
  • Japan
  • Jordan
  • Kazakhstan
  • Kenya
  • Kiribati
  • Kuwait
  • Kyrgyzstan
  • Laos
  • Latvia
  • Lebanon
  • Lesotho
  • Liberia
  • Libya
  • Liechtenstein
  • Lithuania
  • Luxembourg
  • Madagascar
  • Malawi
  • Malaysia
  • Maldives
  • Mali
  • Malta
  • Marshall Islands
  • Mauritania
  • Mauritius
  • Mexico
  • Micronesia
  • Moldova
  • Monaco
  • Mongolia
  • Montenegro
  • Morocco
  • Mozambique
  • Myanmar
  • Namibia
  • Nauru
  • Nepal
  • Netherlands
  • New Zealand
  • Nicaragua
  • Niger
  • Nigeria
  • North Korea
  • North Macedonia
  • Norway
  • Oman
  • Pakistan
  • Palau
  • Panama
  • Papua New Guinea
  • Paraguay
  • Peru
  • Philippines
  • Poland
  • Portugal
  • Qatar
  • Romania
  • Russia
  • Rwanda
  • Saint Kitts and Nevis
  • Saint Lucia
  • Saint Vincent and the Grenadines
  • Samoa
  • San Marino
  • Sao Tome and Principe
  • Saudi Arabia
  • Senegal
  • Serbia
  • Seychelles
  • Sierra Leone
  • Singapore
  • Slovakia
  • Slovenia
  • Solomon Islands
  • Somalia
  • South Africa
  • South Korea
  • South Sudan
  • Spain
  • Sri Lanka
  • Sudan
  • Suriname
  • Sweden
  • Switzerland
  • Syria
  • Taiwan
  • Tajikistan
  • Tanzania
  • Thailand
  • Timor-Leste
  • Togo
  • Tonga
  • Trinidad and Tobago
  • Tunisia
  • Turkey
  • Turkmenistan
  • Tuvalu
  • Uganda
  • Ukraine
  • United Arab Emirates
  • United Kingdom
  • United States
  • Uruguay
  • Uzbekistan
  • Vanuatu
  • Vatican City
  • Venezuela
  • Vietnam
  • Yemen
  • Zambia
  • Zimbabwe

New Release: PixLab Bulk Background Removal App for Creators, Marketers & Developers

We’re excited to announce the launch of the PixLab Bulk Background Removal App — a powerful web-based tool built for creators, e-commerce teams, marketers, and developers who need to remove backgrounds from multiple images at once, quickly and effortlessly.

bg remove in action

Try it now at: https://bg-remove.pixlab.io


⚡ What Is It?

The PixLab Bulk Background Removal App is a fast and secure online utility that allows you to upload and process dozens of images in one go. Whether you're preparing product photos, social media content, or working on visual assets for apps, this tool saves hours of manual work by automatically removing image backgrounds with pixel-level accuracy.


🎯 Who Is It For?

This app is ideal for: - Content Creators: Prepare polished assets for thumbnails, posts, and visuals. - E-commerce Teams: Batch process product shots for online stores or catalogs. - Marketing Agencies: Generate clean marketing creatives quickly and consistently. - Developers & Engineers: Integrate background removal into custom workflows via API.


🧰 Key Features

  • Bulk Uploads: Process dozens of images at once — drag and drop your entire folder.
  • Fast & Secure: Optimized for performance with automatic deletion of files after 24 hours.
  • Pixel-Perfect Removal: Automatically detects and removes backgrounds with precision — no need for manual masking.
  • Multiple Format Support: Works with JPG, PNG, WEBP, and other popular image types.
  • Free to Start: Try it instantly, no signup required for basic usage.

🔗 Need Programmatic Integration?

For developers who want to integrate background removal into their applications, PixLab offers a fully documented REST API that supports: - Single image or batch processing - Custom output sizes and formats - Seamless integration with your existing codebase

📘 Explore the Background Removal API: pixlab.io/endpoints/background-remove-api


🖥 Try It Now

Use the app directly in your browser:
Launch Bulk Background Removal App →

Or learn more on the PixLab product page:
https://pixlab.io/bulk-image-background-removal-tool-apis


Whether you're editing a gallery of photos or automating your media pipeline, the new PixLab BG-Remove App brings high-performance image background removal to your fingertips — at scale.

The PixLab Team

✨ Introducing the New PixLab AI Photo Editor: Edit Photos with Text Prompts

We’re beyond excited to unveil the brand-new PixLab AI Photo Editor — a revolutionary browser-based tool that allows you to edit photos using simple text prompts, powered by the latest in generative AI.

ai photo editor

Whether you're a designer, content creator, marketer, or just someone who wants stunning visuals fast, the PixLab AI Photo Editor brings you powerful features that feel like magic.

🔗 Try it now: editor.pixlab.io


🧠 Edit Images Using Text — Yes, Really

Imagine telling your editor what you want in plain language:

"Remove the object and replace it with a beach."
"Fix the lighting and make it look like sunset."
"Remove the person in the background."
"Turn this photo into a painting."

With PixLab’s new AI Photo Editor, you simply type your command, and the editor does the rest. No layers. No complicated sliders. Just your words.


🛠️ A Complete AI Editing Suite in Your Browser

Here’s what’s packed into this groundbreaking release:

✨ Generative Fill

  • Remove or replace anything in your image with smart content-aware AI.
  • Fix broken or missing areas with stunning realism.

🧼 Magic Erase & Cleanup

  • Instantly remove objects, text, blemishes, or distractions from any photo.

🪄 AI Style Transfer

  • Transform your images with artistic styles — Van Gogh, cyberpunk, comic book, and more — with one click.

🔄 Precision Cut-Outs & Background Replacement

  • Remove or swap backgrounds with unmatched precision.
  • Place your subject anywhere: a studio backdrop, a forest, outer space — you name it.

🖼️ Intelligent Upscaling

  • Sharpen and enlarge images without losing detail using AI-powered super-resolution.

🌞 Relight with AI

  • Simulate professional lighting effects. Make it golden hour or add shadows — all without touching a light.

📏 Smart Resizer

  • Resize and crop for any format (Instagram, LinkedIn, YouTube, etc.) with intelligent frame optimization.

📤 Share & Collaborate

  • Export in high-res, or share your creations across devices via cloud sync and secure sharing.

⚡ Who Is It For?

This editor is designed for everyone: - Marketers & creatives making ad visuals or social posts - Photographers looking for fast AI retouching - E-commerce teams producing polished product shots - Casual users who just want great images with zero hassle


🔐 No Installs. No Signups. No Uploads.

PixLab AI Photo Editor works entirely in your browser: - All edits are done client-side - Your data stays private - No software to install - No account required

Just open, drop in your photo, and start creating.


🚀 Ready to Try the Future of Photo Editing?

This is the most powerful release from PixLab to date, combining cutting-edge generative AI with an intuitive interface that anyone can use.

👉 Start editing with words now: https://editor.pixlab.io


Let us know what you create — and stay tuned for even more features like multi-image workflows, batch editing, and direct integration with the PixLab Vision Platform!

Welcome to the new era of image editing. 🖌️✨

Introducing Convert Box by PixLab – Convert Files Instantly, Securely, and for Free

Convert over 239 file formats directly in your browser—no uploads, no tracking, no limitations. From HEIC to JPG, MP4 to MP3, to PDF to Word—PixLab Convert Box is built for speed, privacy, and precision.

convert box image

Convert Anything, Anytime—Without Leaving Your Browser 🧠

PixLab Convert Box is the newest addition to the PixLab platform. An online file converter that runs 100% in your browser. No file leaves your device. No setup required. No restrictions.

Convert:

  • 📸 Images: HEIC, JPG, PNG, WEBP, GIF, SVG...
  • 📄 Documents: PDF, DOCX, XLSX, PPTX, TXT...
  • 🎵 Audio: MP3, WAV, OGG, FLAC...
  • 🎬 Video: MP4, MOV, WEBM, AVI...

239+ formats supported
Batch conversion ready
Completely free

Try it now → https://convert.pixlab.io


Built for Speed and Privacy 🛡️

Unlike traditional online converters, Convert Box performs all operations locally using WebAssembly. Your files never leave your device. This makes it:

  • 🔐 GDPR and HIPAA-safe
  • Blazing fast
  • 🖥️ Compatible with any modern browser

Whether you're shrinking a batch of PNGs, extracting audio from video, or preparing a PDF for print, Convert Box does it all, instantly and securely.


For Developers: Automate File Conversion via REST API 📡

PixLab also provides a production-grade File Format Conversion API, powering Convert Box behind the scenes. Integrate file transformation into any app, service, or backend—no third-party tools required.

📘 Explore the API:

🔑 Get your API key in seconds from the PixLab Console

Use Cases:

  • Convert user uploads to standard formats (e.g., DOCX → PDF)
  • Auto-generate thumbnails or preview formats (e.g., MP4 → JPG)
  • Batch compress images server-side before delivery

Why It Matters 🔍

In 2025, file handling should be:

  • Fast ✅
  • Private ✅
  • Universal ✅

PixLab Convert Box delivers all three without ads, subscriptions, or file-size limits.

🔗 Ready to Convert?

Try it now for free:

👉 convert.pixlab.io

Want to integrate it into your product?

👉 Consult the API Documentation
👉 Get Your API Key from the PixLab Console

Convert smarter. Share safer. PixLab Convert Box is file conversion redefined.

FACEIO Platform Update: Enhanced Passwordless Authentication & Attendance Monitoring for Businesses via Face Recognition

We’re excited to announce the new major release of FACEIO, the world’s easiest-to-integrate Facial Recognition SDK for web and mobile applications. Whether you're a developer building secure apps, a small business owner wanting frictionless login, or managing employee attendance, We have exciting updates, and FACEIO is the perfect solution for your use case.

FACEIO Landing Page

This release brings enhanced passwordless login, real-time liveness detection, accurate age verification, and enterprise-grade on-premises biometric authentication.

Why FACEIO?

FACEIO lets you authenticate users using just their face—no passwords, OTPs, or captchas. Built with privacy and simplicity in mind, it’s ideal for:

  • Web-based facial recognition login
  • Biometric authentication for websites and apps
  • Employee attendance tracking
  • Online age verification with face
  • Liveness detection and deepfake prevention

Now, with this release, FACEIO is even more powerful and secure.

What’s New in This Release?

✅ Liveness Detection API

Prevent spoofing and ensure every face is a real, live user. Our new liveness detection API uses motion, blink, and 3D cues to stop deepfakes and printed-photo attacks in real time.

✅ Age Verification SDK

Need to restrict content or features by age? Our age verification SDK instantly classifies users as minors or adults based on facial features, perfect for e-commerce, gaming, and community platforms.

✅ Improved Developer SDK

  • New JavaScript SDK (@faceio/fiojs) is lighter and faster, and available via NPM.
  • Simplified enrollment & authentication methods: fio.enroll() and fio.authenticate()
  • Full documentation with live demos and examples

📘 Get started quickly with our Integration Guide
→ Or jump straight into the Getting Started Page

Built for Security & Privacy

FACEIO is designed from the ground up with privacy-first principles and strong data protection in mind. No images are stored, only encrypted facial hashes. We meet global compliance standards and offer full transparency on our security architecture.

🔐 Explore our Security Best Practices
🔍 Learn more about Privacy & App Best Practices

Join the FACEIO Developer Community

Need help, feedback, or want to share your project? Join other developers and FACEIO users in our growing Community Forum where we discuss integration tips, use cases, and updates.

⚡ Ready to Go Passwordless?

Integrate biometric face authentication into your web app in under 5 minutes with just a few lines of code.

✅ Lightweight SDK
✅ Secure facial login
✅ Age and fraud detection
✅ Real-time liveness checks
✅ On-premise deployment options for enterprises

Start now with the FACEIO Getting Started Guide →

FACEIO — the secure, developer-first solution for online face login, biometric authentication, and passwordless access.

Major Update: PixLab Annotate Gets a Huge Boost in Features & Performance

🚀 We’re excited to announce a major update to PixLab Annotate, our powerful browser-based image annotation and segmentation tool used by developers, researchers, and ML teams worldwide. With this release, Annotate is faster, more intuitive, and packed with new features designed to streamline dataset preparation for your machine learning projects.

annotate

🔗 Try it now at: annotate.pixlab.io


🆕 What’s New in This Update?

🗂️ Improved Bulk Uploading & Management

Handling large datasets just got easier: - Drag-and-drop multiple images or full folders - Real-time progress tracking - Faster loading and rendering of high-resolution images

✏️ Upgraded Annotation Tools

We’ve added more flexibility and precision to our tools: - Polygon and rectangle tools are now more responsive and support fine-grain editing - New free-draw segmentation mode for pixel-perfect outlines - Snap-to-edge enhancements for cleaner boundaries

📤 Export Enhancements

  • Export all annotations in a single, structured JSON file
  • Supports popular formats for TensorFlow, PyTorch, Detectron2, and others
  • Optional image mask export (PNG) for segmentation tasks

🎯 Label System Overhaul

Labeling is now more powerful and organized: - Brand-new Label Manager with color-coding, grouping, and edit capabilities - Quickly switch between labels using keyboard shortcuts - Assign and auto-fill labels for repetitive tasks

Full Annotation History + Auto-Save

  • Undo/redo every action with confidence
  • Auto-save to local storage so you never lose work
  • Load previous sessions instantly from your browser

🧩 Integration with PixLab Tools Ecosystem

  • Seamless bridge to the Vision Playground for testing AI models on your annotated data
  • Direct compatibility with PixLab’s API for automated processing, content moderation, and more

🔐 Privacy-First, Always

Like before, all annotations are stored locally in your browser. No uploads. No tracking. You’re in full control of your data.


⚡ Why This Matters

This update transforms Annotate into a production-ready tool for: - Preparing custom training datasets - Labeling at scale with higher accuracy - Rapid prototyping and iteration cycles in ML workflows

Whether you're training a YOLO model, segmenting for instance detection, or prepping for OCR, PixLab Annotate now meets the needs of both rapid prototyping and large-scale data labeling.


🚀 Ready to Explore?

Head over to annotate.pixlab.io and experience the upgrade firsthand.

We’d love your feedback! More features — including S3 export, collaborative annotation, and multi-user workspaces — are on the way. Stay tuned.

Happy annotating!