Image Caption Generator

FREEMIUM
От Fantascat | Обновлено 하루 전 | 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"
]}