POINT API
This is an endpoint which can classify an url is a porn or not. Visit here to test out the API.
URL - https://point-api.maia.rest/api/
POST
import requests
data = {
"key": "Your Key",
"point": "ggvbff-in"
}
response = requests.post("https://point-api.maia.rest/api/", json = data)
print(response.json())
curl -X POST "https://point-api.maia.rest/api/" -H "accept: application/json" -H "Content-Type: application/json" -d "{ \"point\": \"ggvbff-in\", \"key\": \"Your-key\"}"
OUTPUT
{
"name": "ggvbff-in",
"data": {
"geopoint": {
"latitude": 37.3198379269584,
"longitude": -121.97709957137705
},
"city": "San Jose",
"country": "United States of America",
"state": "California",
"zipcode": "95129",
"description": ""
}
}
Fields | field type | description |
---|---|---|
point | string | name of the point |
key | string | a valid key |
WEB SCRAPER
This is an endpoint which has the ability to scrape websites for text. Visit here to test out the API.
URL - https://scraper-services.maia.rest/api/general-scraper
POST
import requests
data = {
"key": "Your Key",
"url": "https://tomilkieway.com"
}
response = requests.post("https://scraper-services.maia.rest/api/general-scraper",json = data)
print(response.json())
curl --location --request POST 'https://scraper-services.maia.rest/api/general-scraper' \
--header 'Content-Type: application/json' \
--data-raw '{
"key": "Your Key",
"url": "https://tomilkieway.com"
}
'
OUTPUT
{
"text": "Milkie Way\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nHome\n\n\nAbout Us\n\n\nOur Philosophy\n\n\nOur Products\n\n\nContact\n\n\n\n\n\n\n\n\n\n\r\n Our mission is to build and launch products that make the world a more efficient, safer, and connected space.\r\n \n\n\n\n\n\n\n\n\n\nAbout Us\n\r\n Milkie Way is a technology company headquartered in Silicon Valley, CA. Our mission is to build and launch products that make our world a more efficient, safer, and connected space.Milkie Way provides us a platform where we can test and launch technological products that solve problems for our users. While we are not tied to any specific industry, technology is, and will be the common denominator across all our products.In the ideal world, Milkie Way will be a collection of companies, each of which will try to tackle a specific problem for our users. Until our solutions & products mature and are ready to transform into an independent offering, Milkie Way will provide the structure, resources, and launchpad for these ideas to take shape.\r\n \n\n\n\n\n\nOur Philosophy\n\n\n\n\nBuild for everyone\n\r\n We want to build products that can be accessed and used by everyone. Technology is increasingly getting ubiquitous, and even though there are very different environments that our users live in, many of the critical problems that affect them are quite similar. Our products, by extension, should be scalable for all the users in the world.\r\n \n\n\n\n\nSmall, quick iterations\n\r\n Putting the user first, our development process is highly user-centric, and instead of launching finished products, we will launch features in quick, small iterations. The goal will always be to get the product in the hands of our users and hear their feedback.\r\n \n\n\n\n\nUse infinitesimal resources\nWe believe less is more. Our culture instills the use of minimal resources to produce the maximum impact. Iterations of our products will be minimalistic but functional, and we will always listen to our users to build the most critical features first.\n\n\nAlways do the right thing. When conflicted, speak loudly.\n\r\n In any given situation, we will do the right thing. However, it may happen that in some exceptional cases, there is no right answer. The gray line sometimes is too thick to make a decision. In such cases, we will discuss the issue at length and make decisions on what is best for our users.\r\n \n\n\nDirect and Transparent Communication\nEither within the teams or externally, we will strive to be as transparent about our policies as possible. Our language and messages will always be direct and easy to understand by everyone.\n\n\n\n\n\n\n\n\n\n\nOur Products\n\n\n\n\n\n\n\n\n\n\n\n\n\nContact Us\n\r\n Feel free to reach us.\r\n \nConnect\n\n\n\n\n\n\n\n\n\n\ncontact@tomilkieway.com\n\n\n\n\n\nHeadquarters:\r\n Santa Clara, California\r\n 1050 Kiely Blvd #3137\r\n Santa Clara, CA - 95055\r\n \n\n\n\n\n\n\nSubscribe to theMilkie Way newsletter:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMilkie Way Inc. © 2020 | Certificate of Incorporation"
}
Fields | field type | description |
---|---|---|
key | string | a valid key |
url | string | a valid url starting with http or https |
NSFW URL CLASSIFIER
This is an endpoint which can classify an url is NSFW or Safe for Usage. Visit here to test out the API.
URL - https://nsfw-url-classifier.maia.rest/api/
POST
import requests
data = {
"key": "Your Key",
"url": "https://tomilkieway.com"
}
response = requests.post("https://nsfw-url-classifier.maia.rest/api/",json = data)
print(response.json())
curl --location --request POST 'https://nsfw-url-classifier.maia.rest/api/' \
--header 'Content-Type: application/json' \
--data-raw '{
"key": "Your Key",
"url": "https://tomilkieway.com"
}
'
OUTPUT
{
"data": {
"result": {
"isPorn": "false",
"score": "0.04622"
},
"url": "https://tomilkieway.com"
}
}
Fields | field type | description |
---|---|---|
key | string | a valid key |
url | string | a valid url starting with http or https |
MEANINGFUL TEXT CLASSIFIER
This is an endpoint which accepts a text and classifies as a text written by human or a random generated text. Visit here to test out the API.
URL - https://meaningful-text-classifier.maia.rest/api/
POST
import requests
data = {
"key": "Your Key",
"text": "This is meaningful."
}
response = requests.post("https://meaningful-text-classifier.maia.rest/api/",json = data)
print(response.json())
curl --location --request POST 'https://meaningful-text-classifier.maia.rest/api/' \
--header 'Content-Type: application/json' \
--data-raw '{
"key": "Your Key",
"text": "This is meaningful."
}
'
OUTPUT
{
"response": {
"meaningful": true,
"score": "0.65000",
"text": "This is meaningful."
}
}
Fields | field type | description |
---|---|---|
key | string | a valid key |
text | string | a string to evaluate |
NSFW IMAGE CLASSIFIER
This is an endpoint which can classify an url as NSFW or Safe for Usage. Visit here to test out the API.
URL - https://nsfw-image-classifier.maia.rest/api/
POST
import requests
data = {
"key": "Your Key",
"images":["https://thumbs.worthpoint.com/zoom/images1/360/1014/22/erotic-female-nude-pencil-drawing_360_9f48f779180411827b3e40a129483f37.jpg",
"https://search.pstatic.net/common?src=https://mt.404cdn.com/galleries/1571746/cover.jpg",
"https://images.unsplash.com/photo-1583139937725-8ccafdb2db1b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60",
"https://myxxxporn.biz/picc/sd/226098.jpg",
"https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRejJYgUezSDpy6uAwyZMaHgmDsaD6aV2RJHAlv0ML3saPdWegm&usqp=CAU"
]
}
response = requests.post("https://nsfw-image-classifier.maia.rest/api/",json = data)
print(response.json())
curl --location --request POST 'https://nsfw-image-classifier.maia.rest/api/' \
--header 'Content-Type: application/json' \
--data-raw '{
"key": "Your Key",
"images":["https://thumbs.worthpoint.com/zoom/images1/360/1014/22/erotic-female-nude-pencil-drawing_360_9f48f779180411827b3e40a129483f37.jpg",
"https://search.pstatic.net/common?src=https://mt.404cdn.com/galleries/1571746/cover.jpg",
"https://images.unsplash.com/photo-1583139937725-8ccafdb2db1b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60",
"https://myxxxporn.biz/picc/sd/226098.jpg",
"https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRejJYgUezSDpy6uAwyZMaHgmDsaD6aV2RJHAlv0ML3saPdWegm&usqp=CAU"
]
}
'
OUTPUT
{
"response": [
{
"image": "https://thumbs.worthpoint.com/zoom/images1/360/1014/22/erotic-female-nude-pencil-drawing_360_9f48f779180411827b3e40a129483f37.jpg",
"nsfw_report": {
"drawings": null,
"hentai": null,
"message": "Improper image.Image url must provide a valid image.",
"neutral": null,
"porn": null,
"sexy": null
}
},
{
"image": "https://search.pstatic.net/common?src=https://mt.404cdn.com/galleries/1571746/cover.jpg",
"nsfw_report": {
"drawings": "0.20101",
"hentai": "0.78971",
"message": null,
"neutral": "0.00048",
"porn": "0.00854",
"sexy": "0.00026"
}
},
{
"image": "https://images.unsplash.com/photo-1583139937725-8ccafdb2db1b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60",
"nsfw_report": {
"drawings": "0.00000",
"hentai": "0.00531",
"message": null,
"neutral": "0.00047",
"porn": "0.94051",
"sexy": "0.05371"
}
},
{
"image": "https://myxxxporn.biz/picc/sd/226098.jpg",
"nsfw_report": {
"drawings": "0.00003",
"hentai": "0.06024",
"message": null,
"neutral": "0.00014",
"porn": "0.85726",
"sexy": "0.08233"
}
},
{
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRejJYgUezSDpy6uAwyZMaHgmDsaD6aV2RJHAlv0ML3saPdWegm&usqp=CAU",
"nsfw_report": {
"drawings": "0.00000",
"hentai": "0.00149",
"message": null,
"neutral": "0.00098",
"porn": "0.99612",
"sexy": "0.00140"
}
}
]
}
Fields | field type | description |
---|---|---|
key | string | a valid key |
images | array of strings | an array of image urls (maximum size allowed is 5) |