TeeAPI lets smart contracts securely fetch and verify API data with full control of privacy
TeeAPI is a secure and privacy-preserving API bridge that allows smart contracts to access external web data in a trustless way—without exposing sensitive information or relying on centralized oracles.
The project leverages Trusted Execution Environments (TEEs) to enable confidential and tamper-proof API calls from any EVM-compatible blockchain (currently deployed on Base Sepolia). Smart contracts can request data from public or private APIs, apply private condition checks, and receive only the verified results—bringing real-world data on-chain while preserving blockchain principles like decentralization, transparency, and security.
TeeAPI is designed to be a developer-friendly, composable infrastructure layer for building next-generation dApps across multiple industries, for example:
Core Features
For demo, we have implemented a Flight Delay Insurance use case to show how a smart contract can automatically trigger payouts based on real-time flight data without exposing the raw API response. The project provides an example implementation using the TeeAPI service, showcasing encrypted API key usage, while still showing which API endpoint is used (for public verification), conditional logic (is flight landed/delayed) and a clear use case (direct payout instead of a long insurance claiming process).
Some useful links:
TeeAPI combines smart contracts with a TEE-secured oracle service to address the challenge of securely integrating off-chain API data with blockchain applications.
For the smart contracts we use Solidity with the Foundry for development workflow (testing, deployment, scripting) and Solady library for gas-efficient contract components.
For the TEE Service Layer we implement in Python with asyncio for the backend service, Web3.py for blockchain interaction (subscribing to events, sending the tx fulfilling the request), eciespy for Ethereum-compatible ECIES encryption, dstack-sdk for TEE attestation and secure key management, FastAPI for the auxiliary API server (health check, get public key, encrypt data), Docker for containerization and deployment.
Key Technical Patterns:
Secure External API Access: The Oracle contract provides a standardized interface for smart contracts to request data from external APIs. Requests are processed in a secure TEE environment, ensuring that API keys and sensitive request data remain protected.
ECIES Encryption with secp256k1: We use Ethereum's native curve with ECIES for encrypting sensitive data. This approach ensures compatibility with existing Ethereum infrastructure while providing strong cryptographic security. We also add a API endpoint in the TEE that allows users to easily encrypt sensitive data to use in their smart contracts securely.
The conditional verification with encrypted comparison values is a little hacky but very useful to compare for example against a bank balance while only getting a true/false back, on-chain you cannot even see the amount it was compared against.