Getting Started with Littledata.ai

From sign-up to your first compliance assessment in under 5 minutes. Everything you need to get up and running.

Quick Start (5 Minutes)

  1. Sign up at littledata.ai
    Go to littledata.ai/signup, enter your work email, and choose a plan. Your 14-day free trial starts immediately — no credit card required.
  2. Verify your email
    Check your inbox for the magic link. Click it to activate your account and land on the dashboard.
  3. Copy your API key
    Navigate to Settings → API Keys and copy your key (it starts with airisk_). Keep it safe — treat it like a password.
  4. Make your first API call
    Run the following to verify your key and pull your governance dashboard:
    curl https://littledata.ai/api/v1/governance/dashboard \ -H "X-API-Key: airisk_your_key_here"
    You should receive a JSON object with risk scores, framework coverage, and compliance metrics.
  5. Explore the dashboard
    Log in to the dashboard to see your EU AI Act compliance status, risk scores, framework assessments, and audit trail — all updated in real time.

📋 Framework Guides

Littledata.ai supports 10+ regulatory frameworks. Here are the three most commonly used:

EU AI Act

Full article-by-article compliance assessment, automated risk classification (Unacceptable / High / Limited / Minimal), Fundamental Rights Impact Assessments (FRIA), and regulator-ready documentation generation.

→ /api/v1/eu-compliance

ISO 42001

Certification readiness tracking across all 39 Annex A controls, Statement of Applicability (SoA) generator, gap analysis, and evidence collection workflows aligned with ISO 42001:2023.

→ /api/v1/frameworks/soa

NIST AI RMF

Risk management across the four core functions (Govern, Map, Measure, Manage), profile creation, cross-mapping to EU AI Act and ISO 42001, and continuous monitoring integration.

→ /api/v1/frameworks/nist

📄 API Reference

The full interactive API reference is available via Swagger UI. All endpoints accept X-API-Key in the request header and return JSON.

Base URL

https://littledata.ai/api/v1/

Authentication

X-API-Key: airisk_your_key_here

Example — Risk Score an AI System

curl -X POST https://littledata.ai/api/v1/risk/score \ -H "X-API-Key: airisk_your_key_here" \ -H "Content-Type: application/json" \ -d '{ "system_name": "Customer Churn Predictor", "category": "predictive_analytics", "data_types": ["behavioral", "financial"], "deployment_context": "eu_regulated" }'

🔧 SDK Installation

The official Python SDK wraps the REST API with typed models, automatic retry, and pagination helpers. The SDK is in public preview.

Install

pip install littledata-sdk

Quick Example

from littledata import Client client = Client(api_key="airisk_your_key_here") # Score a risk assessment result = client.risk.score( system_name="My AI Model", category="classification", data_types=["personal"], ) print(result.risk_level, result.score)

SDKs for JavaScript/TypeScript and Go are planned for Q3 2026. See the API reference in the meantime.

Frequently Asked Questions

How does the 14-day trial work?

Your trial starts the moment you verify your email. You get full platform access — all frameworks, scoring, reporting, and the API — for 14 days at no cost. No credit card is required to sign up. At the end of the trial, you can subscribe via Wise bank transfer to keep your data and configuration.

What payment methods are accepted?

Littledata.ai accepts payment via Wise bank transfer, which supports multi-currency payments from over 70 countries. Plans are billed at $500/month or $5,000/year (2 months free). Enterprise contracts with PO/invoice billing are available — contact us.

How do I add team members?

Go to Settings → User Management in the dashboard. You can invite colleagues by email and assign them scoped permissions (read-only, analyst, admin). SSO via SAML or OIDC is available on the Enterprise plan for centralised identity management.

Is my data encrypted?

Yes. All data is encrypted at rest (AES-256) and in transit (TLS 1.3). API keys are never stored in a recoverable form — they are stored as SHA-256 hashes, so even we cannot read them back. SSO/OIDC client secrets and other sensitive credentials are encrypted at rest with field-level Fernet encryption. The platform is hosted on Render's managed infrastructure with SOC 2 Type II certification. Your data is logically isolated per tenant — no cross-tenant data access is possible.

What compliance frameworks do you support?

Littledata.ai supports 10+ frameworks including EU AI Act, ISO 42001, NIST AI RMF, SOC2 Type II, GDPR Article 22, EU AI Liability Directive, UK AI frameworks, Irish AI Bill, Singapore Model AI Governance Framework, US State AI Laws (Colorado, Texas, and 10+ others), and OWASP Agentic AI Top 10.

How do I contact support?

Email support@littledata.com for technical help. Response times are typically under 4 business hours during EU/UK business hours. For urgent production issues, include "URGENT" in the subject line. Enterprise customers get a dedicated Slack channel and SLA guarantee.

Start Your Free 14-Day Trial

No credit card required · Full access · Cancel anytime