Aperçu
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 Idées d’articles 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 Idées d’articles page.
POST
/ideasRequest Body
| Parameter | Type | Required | Description |
|---|---|---|---|
| idea | string | Required | The 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
| Field | Type | Description |
|---|---|---|
| msg | string | Confirmation message indicating the idea was saved |
| idea | object | The created idea object with metadata |
| idea.idea | string | The content of the saved idea |
| idea.created_at | string | ISO 8601 timestamp when the idea was created |
| idea.updated_at | string | ISO 8601 timestamp when the idea was last updated |