Image Caption Generator

FREEMIUM
(Ким) Fantascat | Оновлено 1日前 | Artificial Intelligence/Machine Learning
Популярність

9.3 / 10

Затримки

6,996ms

Рівень обслуговування

98%

Health Check

100%

Відстежувачі: 13
Ресурси:
Веб-сайт продукту
Створювач API:
Rapid account: Fantascat
Fantascat
fantascatllc
Увійти в «Ставки по API»
Рейтинг: 4.3 - Голосів: 3

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