FourPoint.ai Logo
Developer Platform

Supercharge Your People Tools with FourPoint.AI APIs

FourPoint.AI makes it easy for developers to integrate advanced career intelligence and coaching features into internal HR tools, chatbots, talent platforms, and more.

Coming Soon

fourpoint-api-demo.js
// Analyze a resume in seconds
const response = await fourpoint.analyze({
  resume: resumeText,
  targetRole: "Senior Engineer",
  includeGrowthPlan: true
});

console.log(response.insights);
// {
//   level: "Senior (L5)",
//   strengths: ["System Design", "Leadership"],
//   impactStatements: [...],
//   growthPlan: {...}
// }

Built for developers, by developers

Everything you need to add world-class career intelligence to your applications—with just a few lines of code.

Plug-and-Play Career Intelligence

Instantly access resume insights, impact statements, growth plans, and level benchmarking—no need to build from scratch.

Seamless User Experience

Deliver world-class, up-to-date career coaching directly inside your own applications.

Focus on Innovation, Not Plumbing

Offload the complexity of rubrics, benchmarks, and progression logic—FourPoint.AI handles it all behind the scenes.

Enterprise-Grade Security

All APIs are built for privacy, compliance, and robust data protection.

What you can build

From chatbots to dashboards, our APIs power the next generation of people tools.

Internal HR Chatbots

Add intelligent career coaching to your existing chat interfaces

Slack bots, Teams apps, internal portals

Career Growth Dashboards

Build comprehensive career tracking and progression tools

Employee self-service portals, manager dashboards

Performance Review Tools

Automate review preparation and impact statement generation

360 review platforms, goal-setting tools

Onboarding Enhancement

Accelerate new hire integration with personalized career paths

HRIS integrations, onboarding workflows

Simple, powerful APIs

RESTful APIs with comprehensive documentation, SDKs, and sandbox environments.

Key Endpoints

POST /analyze/resume
Core

Extract insights and impact statements from resumes

GET /growth-plan/:userId
Growth

Generate personalized career development plans

POST /benchmark/role
Analytics

Compare candidates against industry benchmarks

Response Example
{
  "insights": {
    "level": "Senior (L5)",
    "confidence": 0.92,
    "strengths": [
      "System Architecture",
      "Team Leadership",
      "Technical Strategy"
    ],
    "impactStatements": [
      "Led migration reducing latency by 60%",
      "Mentored 8 engineers across 3 teams"
    ]
  },
  "growthPlan": {
    "nextLevel": "Staff (L6)",
    "keyAreas": ["Org Impact", "Vision"],
    "timeline": "12-18 months"
  }
}