Tier Comparison & Pricing
Choose the right analysis tier and subscription plan for your business needs. Our tiered pricing system offers flexible options from basic lead qualification to comprehensive behavioral analysis with buyer playbooks.
Analysis Tiers Overviewβ
| Tier | API Calls | Credits | Analysis Depth | Response Time | Best For |
|---|---|---|---|---|---|
| Basic | 1 (Profile only) | 1 | Core personality insights | 2-5 seconds | Lead qualification |
| Standard | 2 (Profile + Posts) | 1-2 | Enhanced behavioral analysis | 5-10 seconds | Sales preparation |
| Premium | 2 (Profile + Posts + ML) | 2 | Complete buyer intelligence | 10-15 seconds | High-value prospects |
Subscription Plansβ
Monthly Subscription Tiersβ
| Plan | Monthly Credits | Monthly Cost | Rate Limit | API Key Sample | Best For |
|---|---|---|---|---|---|
| Essentials | 500 | $29 | 5 req/sec | basic_api_2vX9mKpQ... | Small teams |
| Professional | 1,000 | $99 | 10 req/sec | bi41LFw9Q8alZqm3... | Growing businesses |
| Enterprise | 1,000 | $299 | 15 req/sec | complete_api_5rX8mKpQ... | Large organizations |
Credit Packages (Pay-Per-Use)β
| Package | Credits | Cost | Cost per Credit | Best For |
|---|---|---|---|---|
| Starter Pack | 100 | $19 | $0.19 | Testing |
| Power Pack | 200 | $49 | $0.245 | β Most popular |
| Enterprise Boost | 500 | $99 | $0.198 | Medium volume |
| Mega Pack | 1,000 | $149 | $0.149 | High volume |
Available Tiers Informationβ
Get real-time information about available plans and features:
Endpoint Detailsβ
Endpointβ
GET /tiers-disponiveis
Production API:
GET https://6g0pxvn3va.execute-api.us-west-2.amazonaws.com/dev/tiers-disponiveis
Authenticationβ
Authentication is optional for this endpoint (but recommended to see your current plan):
X-API-Key: your-api-key-here
Example Requestβ
curl "https://a7qq5h74ej.execute-api.us-west-2.amazonaws.com/production/tiers-disponiveis" \
-H "X-API-Key: your-api-key-here"
Actual Response Formatβ
{
"message": "Sistema de API Keys por tier implementado",
"tiers_disponiveis": [
{
"nome": "BΓ‘sico",
"tier": "basic",
"preco": "R$ 99/mΓͺs",
"funcionalidades": [
"AnΓ‘lise bΓ‘sica de perfil profissional pΓΊblico",
"ScrapIn API (experience endpoint)",
"Google Search + Person Validation",
"Perplexity AI insights",
"OCEAN ML analysis (scores filtrados)",
"Buyer playbook bΓ‘sico"
],
"endpoints_permitidos": ["crm_basico", "analisar"],
"creditos_por_uso": {
"crm_basico": 1,
"analisar": 1,
"crm": "β Acesso negado - upgrade necessΓ‘rio",
"analisar-extensao-chrome": "β Acesso negado - upgrade necessΓ‘rio"
},
"api_key_format": "basic_api_xxxxxxxxx"
},
{
"nome": "Completo",
"tier": "complete",
"preco": "R$ 299/mΓͺs",
"funcionalidades": [
"Todas as funcionalidades do BΓ‘sico +",
"OCEAN personality scores completos",
"MBTI analysis",
"Communication & working style analysis",
"Strengths & decision-making insights",
"Trust-building strategies",
"AnΓ‘lise comportamental avanΓ§ada"
],
"endpoints_permitidos": ["crm_basico", "crm", "analisar", "analisar-extensao-chrome"],
"creditos_por_uso": {
"crm_basico": 1,
"analisar": 1,
"crm": 2,
"analisar-extensao-chrome": 1
},
"api_key_format": "complete_api_xxxxxxxxx"
}
],
"upgrade_info": {
"message": "API keys bΓ‘sicas nΓ£o podem acessar o endpoint /crm",
"upgrade_benefits": [
"Acesso completo aos OCEAN personality scores",
"AnΓ‘lise MBTI detalhada",
"Insights comportamentais avanΓ§ados"
"Dynamic pain points analysis"
]
}
},
"endpoints": {
"/saude": {
"method": "GET",
"description": "Health check endpoint",
"authentication": "Optional",
"available_in": ["basic_plan", "premium_plan"]
},
"/tiers-disponiveis": {
"method": "GET",
"description": "Available tiers information",
"authentication": "Optional",
"available_in": ["basic_plan", "premium_plan"]
},
"/crm_basico": {
"method": "POST",
"description": "Basic CRM intelligence (6 fields)",
"authentication": "Required",
"fields_returned": 6,
"apis_used": ["Scrapin Experience", "Perplexity"],
"available_in": ["basic_plan", "premium_plan"]
},
"/crm": {
"method": "POST",
"description": "Complete CRM intelligence (10 fields)",
"authentication": "Required",
"fields_returned": 10,
"apis_used": ["Scrapin Experience", "Scrapin Posts", "Perplexity"],
"available_in": ["premium_plan"]
}
},
"regions": ["us-west-2"],
"api_version": "1.0.0"
}
Response Fieldsβ
Tiers Objectβ
| Field | Type | Description |
|---|---|---|
| name | string | Plan name in AWS API Gateway |
| rate_limit | string | Requests per second allowed |
| burst_limit | string | Burst requests allowed |
| quota | string | Monthly request quota |
| endpoints | array | Available endpoints for this plan |
| features | array | Key features included in plan |
Endpoints Objectβ
| Field | Type | Description |
|---|---|---|
| method | string | HTTP method (GET/POST) |
| description | string | Endpoint description |
| authentication | string | Authentication requirement |
| fields_returned | number | Number of fields in response (CRM endpoints) |
| apis_used | array | External APIs consumed (CRM endpoints) |
| available_in | array | Plans that include this endpoint |
Use Casesβ
- Plan Comparison: Compare Basic vs Premium features
- Integration Planning: Understand available endpoints
- Billing Planning: Check quotas and rate limits
- Feature Discovery: See what's included in each tier
Status Codesβ
| Code | Description |
|---|---|
| 200 | Successfully retrieved tiers information |
| 500 | Internal server error |
Example Usageβ
JavaScript/Fetchβ
const response = await fetch('https://6g0pxvn3va.execute-api.us-west-2.amazonaws.com/dev/tiers-disponiveis');
const tiers = await response.json();
console.log('Available Plans:', Object.keys(tiers.tiers));
Pythonβ
import requests
response = requests.get('https://6g0pxvn3va.execute-api.us-west-2.amazonaws.com/dev/tiers-disponiveis')
tiers = response.json()
print(f"Available Plans: {list(tiers['tiers'].keys())}")
Node.jsβ
const axios = require('axios');
const response = await axios.get('https://6g0pxvn3va.execute-api.us-west-2.amazonaws.com/dev/tiers-disponiveis');
console.log('Available Plans:', Object.keys(response.data.tiers));
Feature Comparison by Tierβ
| Feature | Basic | Standard | Premium |
|---|---|---|---|
| Data Sources | Public professional profile | Profile + Recent Posts | Profile + Posts + Social Signals |
| OCEAN Personality Scores | β Basic | β Enhanced | β Advanced |
| MBTI Assessment | β | β | β |
| Stakeholder Classification | β | β | β Enhanced |
| Communication Style | β | β | β |
| Working Preferences | β | β | β |
| Pain Points Analysis | Basic | β | β Dynamic |
| Buyer Playbook | β | β | β |
| Trigger Phrases | β | β | β |
| Regional Insights (Brazil) | Basic | β | β Enhanced |
| Industry Context | β | β | β |
| Decision-Making Style | β | β | β |
| Trust-Building Strategies | β | β | β |
| Chrome Extension Support | β | β | β |
Endpoint Access by Planβ
Portuguese CRM API Endpointsβ
| Endpoint | Essentials | Professional | Enterprise | Credits | Features |
|---|---|---|---|---|---|
/crm_basico | β | β | β | 1 | 6 core CRM fields |
/crm | β | β | β | 2 | 12+ enhanced fields with OCEAN & MBTI |
/analisar | β | β | β | 1 | 25+ comprehensive behavioral fields |
/analisar-extensao-chrome | β | β | β | 1 | Chrome extension optimized |
/saude | β | β | β | 0 | Health check & key validation |
English Analysis API Endpointsβ
| Endpoint | Essentials | Professional | Enterprise | Credits | Features |
|---|---|---|---|---|---|
/analyze | β | β | β | 1 | 25+ comprehensive behavioral fields |
| /analyze-comprehensive | β | β
| β
| 1-2 | Tiered analysis (Basic/Standard/Premium) |
| /health | β
| β
| β
| 0 | Health check & key validation |
Plan Selection Guideβ
Essentials Plan - Ideal for:β
- Small sales teams (2-5 people)
- Basic lead qualification and scoring
- Testing and evaluation of the API
- Simple CRM integration needs
- Chrome extension usage
Professional Plan - Ideal for:β
- Growing sales teams (5-20 people)
- Advanced behavioral analysis needs
- Full CRM integration requirements
- Regular use of premium endpoints
- Mixed Basic/Standard/Premium analysis
Enterprise Plan - Ideal for:β
- Large sales organizations (20+ people)
- Strategic account management
- High-volume API usage
- Priority support requirements
- Custom integration needs
- Mission-critical applications
Cost Optimization Strategiesβ
Tier Selection Best Practicesβ
| Use Case | Recommended Tier | Optimization Strategy |
|---|---|---|
| Lead Qualification | Basic | Use for initial prospect screening |
| Sales Preparation | Standard | Most cost-effective for sales teams |
| Enterprise Sales | Premium | High-value prospects only |
| Volume Processing | Mixed approach | Basic for screening, Premium for qualified leads |
Credit Efficiency Tipsβ
- Use Health Checks: Test API keys without consuming credits
- Batch Processing: Process multiple prospects in planned sessions
- Tier Optimization: Use appropriate tier for each use case
- Cache Results: Store analysis results to avoid duplicate calls
- Monitor Usage: Set up alerts at 75% and 90% usage
Programming Examplesβ
Check Available Tiersβ
import requests
# Check available tiers and your current plan
response = requests.get(
'https://a7qq5h74ej.execute-api.us-west-2.amazonaws.com/production/tiers-disponiveis',
headers={'X-API-Key': 'your-api-key-here'}
)
if response.status_code == 200:
tiers_info = response.json()
print("Available plans:", list(tiers_info['tiers'].keys()))
# Check your current plan capabilities
if 'current_plan' in tiers_info:
current_plan = tiers_info['current_plan']
print(f"Your plan: {current_plan['name']}")
print(f"Rate limit: {current_plan['rate_limit']}")
print(f"Monthly quota: {current_plan['quota']}")
JavaScript Exampleβ
const checkTiers = async () => {
try {
const response = await fetch(
'https://a7qq5h74ej.execute-api.us-west-2.amazonaws.com/production/tiers-disponiveis',
{
headers: {
'X-API-Key': process.env.FLUENCE_API_KEY
}
}
);
const tiersInfo = await response.json();
console.log('Available endpoints:', Object.keys(tiersInfo.endpoints));
// Check which endpoints you can access
const availableEndpoints = Object.entries(tiersInfo.endpoints)
.filter(([endpoint, info]) =>
info.available_in.includes('your_plan_name')
)
.map(([endpoint]) => endpoint);
console.log('Your available endpoints:', availableEndpoints);
} catch (error) {
console.error('Error checking tiers:', error);
}
};
Support & Upgradesβ
- π§ Sales Team: sales@tryfluence.tech
- π³ Billing Support: billing@tryfluence.tech
- π§ Technical Support: support@tryfluence.tech
- π Enterprise Support: Available for Enterprise plan customers
Ready to choose your plan? Contact sales β or start testing β