Skip to content

Quick AI suggestions

One-tap helpers that take the caption you already wrote and make it better.

Why use it

You write a caption, then let one button add hashtags, trim it shorter, or polish the wording. No retyping — your text is updated in place.

Step by step

Write a caption

Type your post text in the composer caption box, just like normal.

Open More tools

Click the More tools (Diğer araçlar) button near the caption.

Pick a suggestion

Choose one:

  • Suggest hashtags — adds relevant hashtags.
  • Shorten — makes the caption shorter and tighter.
  • Improve the tone — rewrites it to sound friendlier or more professional.

See it update

Your caption text is replaced with the new version right away. If you don't like it, just undo or pick another option.

TIP

Start with a rough caption and let Improve the tone clean it up — it's faster than writing the perfect line yourself.

WARNING

The helper changes your caption in place. Read the new version before you publish to make sure it still says what you mean.

Good to know

  • These helpers only edit the caption you already wrote — they don't create a brand-new post.
  • They're fast and don't cost any credits.
  • For reference: writing or rewriting text costs 1 credit elsewhere, making an image costs 5, and making a video costs 20.
  • Need fuller help instead of a quick fix? See Inline assistance.
For developers

Suggestions are lightweight inline text transformations on existing copy.

POST /api/v1/ai/suggestions

Request body:

typescript
{
  text: string,                                  // the source copy
  action: "hashtags" | "shorten" | "improve",
  count?: number,                                // for hashtags
  maxLen?: number,                               // for shorten (default 280)
  tone?: "casual" | "formal" | "engaging" | "professional",
  language?: string,
  modelId?: string,
}

Operations:

  • hashtags — returns up to 20 hashtag strings, one per line, parsed from the model output.
  • shorten — returns one shortened version targeting maxLen characters (default 280, X-friendly).
  • improve — returns a rewrite in the requested tone (default engaging).

Not metered — these are fire-and-forget transforms with no credit debit.