ISCANET
Now with IscaAI 1.0

AI-Powered Developer ToolsBuilt for Scale

Integrate powerful AI capabilities into your applications with our comprehensive suite of developer tools. From CV analysis to content generation, we've got you covered.

Integration Made Simple

Get started in minutes with our developer-friendly APIs and comprehensive SDKs

Live Example
// Initialize the AI Tools SDK
import { AITools } from '@aitools/sdk';

const client = new AITools({
  apiKey: process.env.AITOOLS_API_KEY
});

// Analyze a resume
const analysis = await client.cv.analyze({
  resumeText: resumeContent,
  jobDescription: jobPosting
});

console.log(analysis.score); // 85
console.log(analysis.suggestions);

Powerful AI Tools

Choose from our comprehensive suite of AI-powered tools, each optimized for developer integration

CV Analysis Suite

Production Ready

Comprehensive CV analysis including role recommendations, sentiment analysis, and achievement extraction

$0.05 per analysis

Skill Gap Analysis

Production Ready

Identify missing skills and competencies for target roles with personalized recommendations

$0.03 per analysis

Resume Generator API

Production Ready

Generate professionally formatted resumes optimized for different regional markets using structured data input

$0.10 per generation

AI Content Generation

Production Ready

Generate personalized cover letters, networking messages, and interview materials

$0.02 per generation

Job Search API

Production Ready

Quota-managed job search across multiple providers with advanced filtering and location-based results

$0.02 per search

Usage Analytics & Tracking

Production Ready

Monitor API usage, track quotas, and access detailed analytics dashboard

Free with API access

Built for Developers

Everything you need to integrate AI into your applications

Developer-First API

RESTful APIs with comprehensive documentation and SDKs for popular languages

Lightning Fast

Sub-second response times with global CDN and optimized AI models

Enterprise Security

SOC 2 compliant with end-to-end encryption and data privacy controls

Real-time Analytics

Detailed usage metrics, performance monitoring, and cost optimization insights

Resume Generator API

Create professionally formatted resumes optimized for different regional markets. Our AI adapts CV content to match local hiring standards and industry expectations.

USA Format

ATS-optimized format with skills-first approach and quantified achievements

ATS-friendly
Skills-focused
Quantified results
1-2 pages

UK Format

Traditional CV format with emphasis on career progression and qualifications

Career timeline
Education emphasis
Professional tone
2+ pages

Europe Format

Europass-inspired format with detailed personal and professional information including passport photo

Comprehensive details
Language skills
Professional photo
Personal section

Canada Format

Blend of US and UK styles with focus on cultural fit and achievements

Cultural awareness
Bilingual ready
Achievement focus
Clean layout

Australia Format

Skills-based format emphasizing work-life balance and team collaboration

Skills matrix
Team focus
Work-life balance
Modern design

Quick Integration Example

// Standard formats (USA, UK, Canada, Australia)
const resumeData = {
  personalInfo: {
    fullName: "Sarah Johnson",
    email: "sarah.johnson@email.co.uk", 
    phone: "+44-20-1234-5678",
    location: "London, UK",
    summary: "Experienced marketing professional..."
  },
  // ... experience, education, skills
  format: "uk"
}

const response = await fetch('/api/cv/generate/resume', {
  method: 'POST',
  headers: { 
    'Content-Type': 'application/json',
    'X-API-Key': 'your-api-key' 
  },
  body: JSON.stringify(resumeData)
})

// Europe format with photo
const formData = new FormData()
formData.append('resumeData', JSON.stringify({
  personalInfo: { /* ... */ },
  format: "europe"
}))
formData.append('photo', photoFile) // Passport photo

const europeResponse = await fetch('/api/cv/generate/resume', {
  method: 'POST',
  headers: { 'X-API-Key': 'your-api-key' },
  body: formData
})

const result = await europeResponse.json()
console.log(result.content) // Generated resume with photo

Job Search API

Comprehensive job search across multiple providers with advanced filtering, location-based results, and intelligent quota management.

Multi-Provider Search

Search across Adzuna, Reed, and WhatJobs simultaneously for comprehensive coverage

Advanced Filtering

Filter by role, location, salary range, job type, company, and posting date

Quota Management

Built-in quota tracking with daily/monthly limits and usage analytics

Real-time Results

Fast response times with intelligent caching and pagination support

Job Search Integration Example

// Search for software engineering jobs in London
const searchParams = new URLSearchParams({
  search_role: 'Software Engineer',
  location: 'London, UK',
  key_words: 'JavaScript, React, Node.js',
  job_type: 'full_time',
  min_salary: '40000',
  max_salary: '80000',
  max_days_old: '30',
  sort_by: 'relevance',
  page: '1',
  limit: '20',
  providers: 'adzuna,reeds,whatjobs'
})

const response = await fetch(`/api/cv/search-jobs?${searchParams}`, {
  headers: { 'X-API-Key': 'your-api-key' }
})

const result = await response.json()
console.log(`Found ${result.data.total_count} jobs`)
console.log('Jobs:', result.data.jobs)
console.log('Provider performance:', result.data.providers)
💡 Pro Tip: Use multiple search parameters for better results. The API requires at least one of: search_role, location, key_words, company, or category.

Ready to Get Started?

Join thousands of developers building with our AI tools