Ranklytics API
  • Getting Started
    • Introduction
    • Authentication
  • Endpoints
    • Get Projects
    • Get Keywords
    • Get Content
    • Get Rankings
    • Find Keywords
    • Find Content Ideas
    • Get OnPage Report
    • Add Keyword to Project
    • Add a Content Idea
Powered by GitBook
On this page
  1. Endpoints

Add a Content Idea

Add a content idea to your project and schedule it for article generation

PreviousAdd Keyword to Project

Last updated 8 months ago

Add a new content idea

post
Body
project_idintegerOptional
topicstringOptional
keywordstringOptional
Responses
200
Successful operation
application/json
400
Invalid API Credentials, Project not found, or Content Idea already exists
application/json
429
Rate limit exceeded
application/json
post
POST /addContentIdea HTTP/1.1
Host: api.ranklytics.ai
Content-Type: application/json
Accept: */*
Content-Length: 48

{
  "project_id": 1,
  "topic": "text",
  "keyword": "text"
}
{
  "status": "text",
  "message": "text",
  "id": 1
}