Skip to main content
GET
/
v3
/
content
List Content
curl --request GET \
  --url https://api.proposales.com/v3/content \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created_at": 123,
      "description": {},
      "product_id": 123,
      "variation_id": 123,
      "title": {},
      "is_archived": {},
      "sources": {},
      "images": [
        {}
      ],
      "integration_id": 123,
      "integration_metadata": {}
    }
  ]
}
variation_id
string
Variation ID filter, can be single ID or multiple comma separated ones. When provided, detailed information will be included in the response.
product_id
string
Product ID filter, can be single ID or multiple comma separated ones. When provided, detailed information will be included in the response. Alternative to variation_id - you can use either parameter.
include_archived
boolean
default:"false"
Set to true to include archived content in the response. By default, only active (non-archived) content is returned.
include_sources
boolean
default:"false"
Set to true to include the sources field in the response. This contains integration metadata like connections to Opera, Mews or other systems.
Content can be products or videos and are found in the content library. They can be attached to a proposal as blocks.

Example Requests

List all content:
GET /v3/content
Get specific content by product IDs:
GET /v3/content?product_id=123,456
Get specific content by variation IDs:
GET /v3/content?variation_id=789,101112
Mix both ID types:
GET /v3/content?product_id=123&variation_id=789
Include archived content:
GET /v3/content?include_archived=true

Response

data
Content[]