Demo – Under Construction


https://api.artintellab.com/free/asa/infer

Test here (open in new tab)

Enhanced WordPress Block Design

Free API Endpoint

https://api.artintellab.com/free/asa/infer

https://api.artintellab.com/free/asa/infer

Test here (open in new tab)

Javascript axios:

import axios from "axios";
axios.post("https://api.artintellab.com/free/asa/infer", {
  text: "أنا بخير"
})

Python requests:

import requests
url = 'https://api.artintellab.com/free/asa/infer'
body = {'text': "أنا بخير"}
res = requests.post(url, json = body)

Output examples:

Prediction Response:
{"label": "positive", "score": 0.8703739047050476}
Rate Limit Exceeded:
{"message":"Too Many Requests"}
Scroll to Top