Public
Documentation Settings

Flask Project API

GETGet Last Post

https://flask-api-ml-model.herokuapp.com/api/posts/last?token=TOKEN_KEY

Allows registered users with a valid API key to get their last published post.

PARAMS
token

TOKEN_KEY

Registered users can obtain TOKEN_KEY at https://flask-api-ml-model.herokuapp.com/api/tokens

Example Request
curl
curl --location 'https://flask-api-ml-model.herokuapp.com/api/posts/last?token=TOKEN_KEY'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTPublish a Post

https://flask-api-ml-model.herokuapp.com/api/posts/new?token=TOKEN_KEY&title=POST_TITLE&content=POST_CONTENT

Allows registered users with a valid API token to publish a post.

PARAMS
token

TOKEN_KEY

Registered users can obtain TOKEN_KEY at https://flask-api-ml-model.herokuapp.com/api/tokens

title

POST_TITLE

post's title

content

POST_CONTENT

post's content

Example Request
curl
curl --location --request POST 'https://flask-api-ml-model.herokuapp.com/api/posts/new?token=TOKEN_KEY&title=POST_TITLE&content=POST_CONTENT'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

DELETEDelete Last Post

https://flask-api-ml-model.herokuapp.com/api/posts/delete?token=TOKEN_KEY

Allows registered users with a valid API token to delete their last post.

PARAMS
token

TOKEN_KEY

Registered users can obtain TOKEN_KEY at https://flask-api-ml-model.herokuapp.com/api/tokens

Example Request
curl
curl --location --request DELETE 'https://flask-api-ml-model.herokuapp.com/api/posts/delete?token=TOKEN_KEY'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTClassify Emotion in an Image

https://flask-api-ml-model.herokuapp.com/api/emoclassifier?token=TOKEN_KEY

Allows registered users with a valid API token to classify emotion in an image.

PARAMS
token

TOKEN_KEY

Registered users can obtain TOKEN_KEY at https://flask-api-ml-model.herokuapp.com/api/tokens

Bodyformdata
image

Key is image of type file. Value is an image that you want to classify.

Example Request
curl
curl --location 'https://flask-api-ml-model.herokuapp.com/api/emoclassifier?token=TOKEN_KEY' \
--form 'image=@"happy.jpeg"'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers