API Documentation v1.0

Build with Future Intelligence

Integrate powerful construction AI capabilities into your applications. Access real-time progress tracking, 3D mapping, equipment monitoring, and more.

Explore APIs Get API Keys

Quick Start

API Products

Choose from our suite of construction AI APIs

Stable

Progress Tracking

Automated construction progress monitoring powered by AI. Track project milestones, compare against schedules, and generate detailed reports.

AI-powered analysisDrone integrationBIM overlay
Stable

3D Site Mapping

Transform aerial imagery into precise 3D models, orthomosaics, and point clouds with centimeter-level accuracy.

Point cloudsOrthomosaicsDEMs/DSMs
Stable

Equipment Tracking

Real-time GPS tracking and utilization monitoring for construction equipment and assets.

Real-time GPSGeofencingUtilization analytics
Stable

Workforce Counting

Automated headcount and attendance tracking using AI-powered computer vision.

Headcount trackingZone analyticsAttendance reports
Stable

Material Tracking

Stockpile measurement and material inventory monitoring with delivery tracking.

Stockpile volumesInventory trackingDelivery monitoring
Beta

BIM Comparison

Compare design models against as-built conditions to detect deviations and track changes.

Design vs realityDeviation detectionChange tracking

Authentication

All API requests require authentication using an API key

Using your API Key

Include your API key in the Authorization header of every request:

HTTP Header
Authorization: Bearer your_api_key_here
Keep your API keys secure
Never expose your API keys in client-side code. Always make API calls from your server.

Make Your First Request

Here's a quick example to get you started

Python

import fi_sdk

client = fi_sdk.Client(api_key="your_api_key")

# List your projects
projects = client.projects.list()

for project in projects.data:
    print(project.name)

cURL

curl -X GET "https://api.fitechco.com/v1/projects" \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json"

Official SDKs

Use our official client libraries for the best developer experience

Python SDK

Full-featured Python client with async support

pip install fi-sdk
View on GitHub

JavaScript SDK

TypeScript-first client for Node.js and browsers

npm install @fi/sdk
View on GitHub

REST API

Direct HTTP access with OpenAPI specification

api.fitechco.com/v1
Download OpenAPI Spec

Webhooks

Receive real-time notifications when events occur in your account

Available Events

capture.completed Progress capture analysis finished
model.ready 3D model processing complete
geofence.triggered Equipment entered/exited zone
alert.created New safety or deviation alert
report.generated Automated report ready
comparison.completed BIM comparison analysis done

Ready to get started?

Contact our team to get your API credentials and start building

Request API Access
export const prerender = true;