SimSimi API

SimSimi API

Build your own SimSimi-style chatbot in seconds — lightweight, fun, and flexible.

Leaderboard

View the top API users and your current rank.

Your Rank

Loading...

Your API Calls

Loading...

Total Users

Loading...

Total API Calls

Loading...

Top Users

  • Loading top users...

Dashboard

View your API key, usage limits, and reset status.

Username

Loading...

API Key

Loading...

Sim Usage

0 / 50

Teach Usage

0 / 50

Reset In

Checking...

GET /sim

Simulate a chatbot reply by entering a user message and your API key below.

Tip: Access directly via /sim?query=hi&apikey=YOUR_API_KEY

GET /teach

Teach the bot how to respond to a custom message with your chosen reply.

Tip: Use the endpoint directly via /teach?ask=hello&ans=hey!&apikey=YOUR_API_KEY
Example GET /teach?ask=hello&ans=hey!&apikey=YOUR_API_KEY
Returns: {"status": "learned"}

API Documentation

GET /sim

Retrieve chatbot-style responses to queries. Requires apikey.

const axios = require('axios');
axios.get('https://simsimi.ooguy.com/sim', {
  params: { query: 'hi', apikey: 'YOUR_API_KEY' }
}).then(res => console.log(res.data));

GET /teach

Teach the bot using a phrase and an answer. Requires apikey.

const axios = require('axios');
axios.get('https://simsimi.ooguy.com/teach', {
  params: { ask: 'hello', ans: 'hey!', apikey: 'YOUR_API_KEY' }
}).then(res => console.log(res.data));
Jerome Profile

Jerome Expertise

Creator of SimSimi API for the Philippines

I built this SimSimi-styled chatbot API for easy access and use across PH-based projects. It's designed for developers, tinkerers, and anyone curious about bot replies.

Contact

Email me at webjerome91@gmail.com

Terms of Service

Use this API responsibly. Abuse or spam may result in blocking without notice.

Privacy Policy

No data is stored or shared. All requests are handled anonymously and privately.