Image Caption Generator

FREEMIUM
By Fantascat | Updated 1ヶ月前 | Artificial Intelligence/Machine Learning
Popularity

9.1 / 10

Latency

7,143ms

Service Level

98%

Health Check

N/A

Followers: 11
Resources:
Product Website
API Creator:
Rapid account: Fantascat
Fantascat
fantascatllc
Log In to Rate API
Rating: 4.5 - Votes: 2

README

Python example:

import requests

url = "https://image-caption-generator2.p.rapidapi.com/v2/captions"
params = {
    "imageUrl": "https://i.pinimg.com/564x/26/c7/35/26c7355fe46f62d84579857c6f8c4ea5.jpg",
    "useEmojis": "true",
    "useHashtags": "true",
    "limit": 3,
}
headers = {
    "X-RapidAPI-Key": "YOUR-API-KEY",
    "X-RapidAPI-Host": "image-caption-generator2.p.rapidapi.com",
}

response = requests.get(url, headers=headers, params=params)
print(response.json())

Output (beautified):

{"captions": [
    "Just another lazy day on the couch, catching up on some much-needed rest 😴🐱 #lazyday #yawning",
    "This kitty knows how to relax in style 😎🛋️ #catlife #couchpotato #yawn",
    "When you realize it's only Monday and you're already exhausted 😩🐾 #mondayblues #catnap #yawningcat"
]}