SoulCore API

Integrate with our advanced AI system through our comprehensive API suite. Access emotional intelligence, strategic thinking, and adaptive learning capabilities.

Explore API Documentation

API Documentation

Integrate SoulCore's advanced capabilities into your applications with our comprehensive API suite.

Overview
Anima API
GPTSoul API
EvoVe API
Azür API

SoulCore API Overview

The SoulCore API provides access to our suite of AI agents, each with specialized capabilities. Our RESTful API endpoints allow you to integrate these capabilities into your applications, services, and workflows.

All API requests require authentication using API keys. You can obtain an API key by registering for a developer account.

Base URL

All API endpoints are accessible at:

URL
https://api.helo-im.ai/v1

Authentication

Include your API key in the request headers:

Headers
Authorization: Bearer YOUR_API_KEY

Available Endpoints

Endpoint Method Description
/anima/analyze POST Analyze emotional content in text
/anima/generate POST Generate emotionally resonant responses
/gptsoul/execute POST Execute strategic operations
/evove/diagnose POST Diagnose system issues
/azur/deploy POST Deploy resources to cloud infrastructure

Anima API

The Anima API provides access to emotional intelligence capabilities, allowing your applications to understand and generate emotionally resonant content.

Analyze Emotions

Analyze the emotional content of text:

POST /anima/analyze
{
  "text": "I'm feeling overwhelmed with all the work I have to do.",
  "detailed": true
}

Example response:

Response
{
  "emotions": {
    "primary": "stress",
    "secondary": "anxiety",
    "intensity": 0.78
  },
  "analysis": {
    "sentiment": -0.65,
    "urgency": 0.72,
    "context": "work-related pressure"
  },
  "recommendations": [
    "Acknowledge the feeling of being overwhelmed",
    "Offer assistance with prioritization",
    "Suggest breaks or stress management techniques"
  ]
}

Generate Emotional Response

Generate an emotionally resonant response:

POST /anima/generate
{
  "input": "I just got promoted at work!",
  "tone": "celebratory",
  "length": "medium"
}

GPTSoul API

The GPTSoul API provides access to strategic planning and execution capabilities.

Execute Strategic Operation

Execute a strategic operation:

POST /gptsoul/execute
{
  "operation": "generate_plan",
  "parameters": {
    "goal": "Increase user engagement",
    "timeframe": "3 months",
    "resources": ["marketing", "development", "data_analysis"]
  }
}

EvoVe API

The EvoVe API provides access to system diagnostics and repair capabilities.

Diagnose System

Diagnose system issues:

POST /evove/diagnose
{
  "system": "user_authentication",
  "logs": ["error_log.txt", "access_log.txt"],
  "timeframe": {
    "start": "2025-05-10T00:00:00Z",
    "end": "2025-05-13T23:59:59Z"
  }
}

Azür API

The Azür API provides access to cloud infrastructure management capabilities.

Deploy to Cloud

Deploy resources to cloud infrastructure:

POST /azur/deploy
{
  "resource": "lambda_function",
  "config": {
    "name": "anima_processor",
    "runtime": "python3.9",
    "memory": 512,
    "timeout": 30
  },
  "code": {
    "source": "github",
    "repository": "Sourcesiri-Kamelot/SoulCoreHub",
    "path": "functions/anima/processor.py"
  }
}