The Emoticon API is a RESTful service that provides a wide variety of emoticons categorized by type. This API is designed to be user-friendly and does not require any authorization, making it easy to integrate into your applications (^.^)
BASE URL : https://emoticons-api.vercel.app/
PROJECT MADE USING API https://stickartly.netlify.app/
GET /api/data
Description |
---|
No Authorization Required. |
GET /api/data/type/:type
Parameter | Type | Description |
---|---|---|
type |
string |
No Authorization Required |
fetch('https://emoticons-api.vercel.app/api/data') .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));
fetch('https://emoticons-api.vercel.app/api/data/type/:type') .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));
The API is hosted on Vercel's free tier with the following limitations:
• Maximum of 100 serverless function invocations per day
• Maximum execution duration of 10 seconds per request
• Maximum payload size of 4.5 MB
Contributions are always welcome!
Please adhere to this project's code of conduct
.
Clone the project
git clone https://github.com/Vaibhav9526/Emoticons_REST_API.git
Install dependencies
npm install or npm i
Start the server
nodemon index.js or node index.js