Ideas

This resource represents your post ideas.

Resumen

The Ideas resource allows you to programmatically save post ideas to your LiGo account. Ideas are stored in your content backlog and can be accessed from the Ideas de publicaciones page to develop into full posts later. Use this endpoint to: - Capture content ideas as they come to you - Build an automated idea collection system - Integrate with other tools to save ideas from various sources

Create a Post Idea

Save a new post idea to your LiGo account. The idea will be stored with timestamps and can be accessed from the Ideas de publicaciones página.

POST/ideas

Request Body

ParameterTipo RequiredDescripción
ideastringRequiredThe content of your post idea.

Example Request

json
{
  "idea": "Post idea"
}

Response

json
{
  "msg": "User-generated idea added successfully",
  "idea": {
    "idea": "Post idea",
    "created_at": "2025-09-25T12:34:56.000000",
    "updated_at": "2025-09-25T12:34:56.000000"
  }
}

Response Fields

FieldTipo Descripción
msgstringConfirmation message indicating the idea was saved
ideaobjectThe created idea object with metadata
idea.ideastringThe content of the saved idea
idea.created_atstringISO 8601 timestamp when the idea was created
idea.updated_atstringISO 8601 timestamp when the idea was last updated

Relacionado