Quick Start Guide

Get up and running with Tietorix AI APIs in minutes

1

Get API Key

Sign up for a developer account and obtain your API credentials

curl -X POST https://api.tietorixai.com/auth/signup
2

Install SDK

Install our Python SDK for easy integration

pip install tietorix-ai-sdk
3

Make Your First Call

Initialize the client and start using AI services

from tietorix import TietorixAI
client = TietorixAI(api_key="your_key")

API Reference

Complete API documentation with endpoints, parameters, and response formats

  • Authentication
  • Machine Learning APIs
  • Data Processing
  • Model Management
Explore APIs

Integration Guides

Step-by-step tutorials for integrating AI services into your applications

  • Web Applications
  • Mobile Apps
  • Enterprise Systems
  • Cloud Platforms
View Guides

SDKs & Tools

Software development kits and tools for multiple programming languages

  • Python SDK
  • JavaScript SDK
  • Java SDK
  • CLI Tools
Download SDKs

Examples & Tutorials

Practical examples and tutorials for common AI implementation scenarios

  • Code Examples
  • Use Case Tutorials
  • Best Practices
  • Sample Projects
Browse Examples

API Reference

Comprehensive API documentation for all Tietorix AI services

Authentication

Secure authentication using API keys and OAuth 2.0

POST /auth/token
{
  "grant_type": "client_credentials",
  "client_id": "your_client_id",
  "client_secret": "your_client_secret"
}

Machine Learning

Access to pre-trained models and custom AI solutions

POST /ml/predict Make predictions using trained models
GET /ml/models List available models
POST /ml/train Train custom models

Data Processing

Data transformation, cleaning, and feature engineering services

POST /data/transform Transform and clean datasets
POST /data/features Extract features from raw data
GET /data/status/{job_id} Check processing job status

Analytics

Advanced analytics and insights generation

POST /analytics/insights Generate insights from data
GET /analytics/reports Retrieve analytics reports
POST /analytics/visualize Create data visualizations

SDKs & Developer Tools

Official SDKs and tools for seamless integration

Python SDK

Full-featured Python library with async support and type hints

✓ Type hints ✓ Async/await ✓ Pandas integration ✓ Jupyter notebooks
pip install tietorix-ai
Documentation

JavaScript SDK

Modern JavaScript/TypeScript SDK for web and Node.js applications

✓ TypeScript ✓ Promise-based ✓ Browser & Node.js ✓ Tree shaking
npm install @tietorix/ai-sdk
Documentation

Java SDK

Enterprise-ready Java library with Spring Boot integration

✓ Spring Boot ✓ Maven & Gradle ✓ Reactive streams ✓ Enterprise features
<groupId>com.tietorix</groupId>
Documentation

CLI Tools

Command-line interface for managing AI projects and deployments

✓ Project management ✓ Model deployment ✓ Data pipelines ✓ CI/CD integration
curl -sSL get.tietorix.ai | sh
Documentation

Code Examples

Real-world examples to get you started quickly

Image Classification

Classify images using pre-trained computer vision models

import tietorix

client = tietorix.TietorixAI(api_key="your_key")

# Classify an image
result = client.vision.classify(
    image_url="https://example.com/image.jpg",
    model="resnet50"
)

print(f"Prediction: {result.label}")
print(f"Confidence: {result.confidence}")

Text Analysis

Analyze sentiment and extract insights from text data

// JavaScript example
const tietorix = require('@tietorix/ai-sdk');

const client = new tietorix.TietorixAI({
  apiKey: 'your_key'
});

// Analyze sentiment
const result = await client.nlp.sentiment({
  text: "I love this new AI service!",
  language: "en"
});

console.log(`Sentiment: ${result.sentiment}`);
console.log(`Score: ${result.score}`);

Predictive Analytics

Build and deploy predictive models with your data

import pandas as pd
from tietorix import TietorixAI

client = TietorixAI(api_key="your_key")

# Load your data
data = pd.read_csv("sales_data.csv")

# Train a model
model = client.ml.train(
    data=data,
    target="revenue",
    algorithm="random_forest"
)

# Make predictions
predictions = model.predict(new_data)

Developer Support

Get help when you need it

GitHub

Find code examples, report issues, and contribute to our open-source projects

Visit GitHub

Developer Community

Join our Discord community to chat with other developers and get help

Join Discord

Technical Support

Contact our technical support team for integration assistance

Contact Support