Image Caption Generator

फ्रीमियम
द्वारा Fantascat | अपडेट किया गया a day ago | Artificial Intelligence/Machine Learning
लोकप्रियता

9.3 / 10

लेटेंसी

6,996ms

सेवा का स्तर

98%

Health Check

100%

फॉलोवर: 13
संसाधन:
उत्पाद वेबसाइट
API निर्माता:
Rapid account: Fantascat
Fantascat
fantascatllc
API को रेट करने के लिए लॉग इन करें
रेटिंग: 4.3 - वोट: 3

रीडमी

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"
]}