Caption Provider

1https://intelliwriter.io/api/caption?title=How to create a Great LinkedIn Profile in 2023 | for College Students

API Name

Caption Generator

Description

This API is designed to automatically generate captions or short descriptions for a given title. It's a useful tool for content creators and social media marketers looking to create engaging and concise captions for their posts or content.

Endpoint

/caption

HTTP Method

GET

Parameters

  • Title (string) The title for which you want to generate a caption.

Example Request

POST /caption
1{
2     "Title": "How to Bake the Perfect Chocolate Chip Cookies" 
3}

Response Fields

  • caption (string) The generated caption or short description based on the provided title.

Status Code

  • 200 OK: The caption was successfully generated.
  • 400 Bad Request: If the request is missing the 'Title' parameter or if the title is too short.

Usage

  • Send a POST request to the /caption endpoint with the 'Title' parameter containing the title for which you want to generate a caption.
  • The API will process the request and return a generated caption that you can use for your social media posts or content descriptions.

This API simplifies the process of creating engaging and concise captions, making it easier for you to captivate your audience and convey the essence of your content effectively.

1const fetch = require('node-fetch'); // For Node.js 
2 const api_key = 'your_api_key'; 
3 const url = 'https://intelliwriter.io/api/caption'; 
4 const data = { Title: 'Your title here' }; 
5 fetch(url, { 
6   method: 'POST', 
7   headers: { 
8     'Authorization': `Bearer ${api_key}`, 
9     'Content-Type': 'application/json', 
10   }, 
11   body: JSON.stringify(data), 
12 }) 
13 .then(response => response.json()) 
14 .then(result => console.log(result));
Logo

Intelliwriter is an AI-powered tool crafted to streamline and elevate your writing experience. Whether you're a content creator, marketer, student, or business owner, Intelliwriter is designed to transform and enhance your content creation process.

Intelliwriter.io © All rights reserved.