Image Caption Generator

פרמיום
על ידי Fantascat | מְעוּדכָּן un giorno fa | 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"
]}