Hipo.ai is celebrating our LAUNCH  milestone and Layer-2 LLM Engine 🎉   Read more. Get $250 OFF on all annual plans: HIPODOTAI250

API Documentation

Welcome to the Hipo.ai API Documentation—a curated guide to seamlessly integrate with our ecosystem and amplify your digital presence.

API Keys

Only available with AI Agents,
sequence is generated based on the data. know more

Note: All APIs have been rate-limited to 10 RPM (Request Per Minute) and 1 request concurrency, to increase you rate limit please contact our sales team ([email protected]) with your usecase.
  • POST/v1/me/ Authentication Parameters

    It verifies your API key—confirming, in the most genuine way, that you are who you say you are—and then returns key details such as your name and available credits.

    Endpoint - https://www.hipo.ai/v1/me/
    json
    No data required
    
    cURL
    curl https://www.hipo.ai/v1/me/ \
    -X POST \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY"
    

  • POST/v1/message/ Create Message

    Create messages that are not just generic notifications but genuine expressions, ensuring your communication feels both meaningful and personal.

    Endpoint - https://www.hipo.ai/v1/message/
    json
    {
    	"channel": "email",
    	"tone": "informal",
    	"max_token": 100,
    	"framework": "pain-gain",
    	"instruct": null,
    	"enrich": true,
    	"linkedin_url": "https://www.linkedin...",
    	"reason": true
    }
    
    cURL
    curl https://www.hipo.ai/v1/message/ \
    -X POST \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY" \
    -d '{
    	"channel": "email",
    	"tone": "informal",
    	"framework": "pain-gain",
    	"max_token": 100,
    	"reason": true,
    }'
    

    Path Parameters

    Parameter Type Default Required Description
    channel str 'email' True Platform you want to generate the message for.
    Available options: ['email', 'linkedin', 'whatsapp', 'notification']
    tone str 'informal' True Specifies the tone for the message.
    Available options: ['informal', 'formal', 'friendly', 'humorous']
    max_token int 100 True Maximum number of the words message should contain.
    framework str 'pain-gain' True Platform you want to generate the message for.
    Available options: ['email', 'linkedin', 'whatsapp', 'notification']
    enrich bool true False If true, requires 'linkedin_url'
    reason bool true False Allow model to reason before generating the message.
    hops int 1 False Under Experiment
    Number of hops to get the output. Each hop will cost 1 additional credit. Example: 1 message with 3 hops will cost 3 credits.

  • POST/v1/personas/ Create Persona

    This endpoint is your canvas for defining the ideal customer profile (ICP). It lets you shape a vivid picture of your perfect customer, much like engaging in a thoughtful conversation with your future business partner.

    Note: Approval required to call this endpoint.

    Endpoint - https://www.hipo.ai/v1/personas/
    json
    {
    	"mode": "website",
    	"website": "https://www.hipo.ai"
    }
    
    cURL
    curl https://www.hipo.ai/v1/create-persona/ \
    -X POST \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY" \
    -d '{
    	"mode": "trained",
    }'
    

    Path Parameters

    Parameter Type Required Description
    asd
  • GET/v1/personas/ List All Persona

    This endpoint is your canvas for listing all the ideal customer profile (ICP).

    Note: Approval required to call this endpoint.

    Endpoint - https://www.hipo.ai/v1/personas/
    json
    {}
    
    cURL
    curl https://www.hipo.ai/v1/create-persona/ \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY"
    
  • GET/v1/persona/PERSONA-ID/ List Persona By ID

    Get details about the individual persona.

    Note: Approval required to call this endpoint.

    Endpoint - https://www.hipo.ai/v1/persona/PERSONA-ID/
    json
    {}
    
    cURL
    curl https://www.hipo.ai/v1/create-persona/ \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY"
    
  • DELETE/v1/persona/PERSONA-ID/ Delete Persona by ID

    Delete persona by ID.

    Note: Approval required to call this endpoint.

    Endpoint - https://www.hipo.ai/v1/persona/PERSONA-ID/
    json
    {}
    
    cURL
    curl https://www.hipo.ai/v1/create-persona/ \
    -X DELETE \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY" 
    

  • POST/v1/train/ Train Model

    This API endpoint is used to train our AI Agents more about the your business, your offerings, your documents, your Youtube videos and more.

    Note: Approval required to call this endpoint.

    Endpoint - https://www.hipo.ai/v1/train/
    json
    {
    	"mode": "website",
    	"urls": [...]
    }
    
    cURL
    curl https://www.hipo.ai/v1/train/ \
    -X POST \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY" \
    -d '{
    	"mode": "website",
    	"urls": [...]
    }'
    

    Path Parameters

    Parameter Type Required Description
    asd
  • GET/v1/train/ List All Trainings

    This API endpoint is used to train our AI Agents more about the your business, your offerings, your documents, your Youtube videos and more.

    Note: Approval required to call this endpoint.

    Endpoint - https://www.hipo.ai/v1/train/
    json
    {}
    
    cURL
    curl https://www.hipo.ai/v1/train/ \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY" 
    
  • GET/v1/train/TRAIN-ID/ List Training By ID

    This API endpoint is used to train our AI Agents more about the your business, your offerings, your documents, your Youtube videos and more.

    Note: Approval required to call this endpoint.

    Endpoint - https://www.hipo.ai/v1/train/
    json
    {}
    
    cURL
    curl https://www.hipo.ai/v1/train/ \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY"
    
  • DELETE/v1/train/TRAIN-ID/ Delete Training by ID

    This API endpoint is used to train our AI Agents more about the your business, your offerings, your documents, your Youtube videos and more.

    Note: Approval required to call this endpoint.

    Endpoint - https://www.hipo.ai/v1/train/
    json
    {}
    
    cURL
    curl https://www.hipo.ai/v1/train/ \
    -X DELETE \
    -H "Content-Type: application/json" \
    -H "X-API-KEY: $HIPO_API_KEY" 
    

Get monthly / weekly doses of growth tips from the best in industry directly in your inbox.

Our comprehensive retention resources, expert advice, and supportive community are here to guide and help you every step of the way.

Latest news Growth Hacks Retention Tips Guide to Success

Join our newsletter, let's stir a change. Free

We also share tips & updates from industry experts directly into your inbox.