ProfioProfio
  • Pricing
  • Blog

Loading...

ProfioProfio

Build professional resumes in minutes. Powered by AI, designed for modern job seekers.

Stay Updated

Product

  • Templates
  • Features
  • Examples
  • Cover Letters
  • Pricing
  • AI Resume Builder
  • ATS Checker

Resources

  • Career Resources
  • Resume Tips
  • Action Verbs
  • Resume Keywords
  • Skills Guide
  • Salary Guide
  • Interview Preparation

Guides

  • How to Write a Resume
  • Cover Letter Guide
  • Cover Letter Templates
  • Cover Letter Examples
  • Resume Formats
  • Chronological Format
  • Functional Format
  • Combination Format
  • Resume Examples
  • Interview Preparation

For You

  • For Students
  • For Professionals
  • For Career Changers
  • For Executives
  • Use Cases
  • Compare Builders
  • Examples

Company

  • About Us
  • Careers
  • Contact
  • Blog
  • Help Center
  • FAQ
  • Security
  • Trust Center

Secure payments powered by

Stripe secure payment processing - PCI DSS Level 1 certified with bank-grade encryptionPCI DSS
PayPal secure online payment method accepted - Buyer protection includedPCI DSS
Visa credit and debit cards accepted - Secure payment processing with PCI DSS Level 1 complianceMastercard credit and debit cards accepted - Secure payment processing with fraud protectionAmerican Express cards accepted - Premium secure payment processingDiscover cards accepted - Secure online payment processingApple Pay contactless payment accepted - Fast and secure checkout with Face ID or Touch IDGoogle Pay contactless payment accepted - Fast and secure checkout with your Google account

© 2026 Profio Inc. All rights reserved.

Delaware C-Corporation · Reg. No. 7597749

Privacy PolicyTerms of ServiceCookie PolicyRefund PolicySecurityTrust CenterBusiness InformationAccessibilityDelivery PolicyTax PolicyPre-Purchase InfoDispute ResolutionData Processing AgreementSubprocessorsExport RestrictionsComplaintsCustomer ServiceLicensesChangelog
  1. API
  2. Documentation

API Documentation

Complete reference for integrating Profio's resume building and AI optimization tools into your applications.

OpenAPI Specification

Access our machine-readable OpenAPI 3.0 specification:

https://profio.dev/api/openapi.json

Authentication

All API requests require authentication using an API key. Include your API key in the Authorization header:

Authorization: Bearer profio_sk_live_...

Generate API keys from your dashboard at Settings → API Keys

Base URL

https://profio.dev/api

Core Endpoints

GET/v1/resumes

List all resumes for authenticated user

Example Request
curl https://profio.dev/api/v1/resumes \
  -H "Authorization: Bearer profio_sk_live_..." \
  -H "Content-Type: application/json"
POST/v1/resumes

Create a new resume

Example Request
curl -X POST https://profio.dev/api/v1/resumes \
  -H "Authorization: Bearer profio_sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"title": "Software Engineer Resume"}'
POST/mcp/tools/profio_score_resume

Get ATS compatibility score (0-100)

Example Request
curl -X POST https://profio.dev/api/mcp/tools/profio_score_resume \
  -H "Authorization: Bearer profio_sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"resumeId": "uuid-here"}'

Rate Limits

Free

10

req/min

Professional

200

req/min

Enterprise

10,000

req/min

Error Codes

401

Unauthorized

Invalid or missing API key

429

Too Many Requests

Rate limit exceeded

500

Internal Server Error

Something went wrong on our end

Need Help?

Check out our full API reference or contact our support team for assistance.

Contact SupportOpenAPI Spec