Infographics
Infographic assets generated per token
Returns paginated infographics created by the authenticated token, including in-progress requests (default 20 per page, max 100).
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pageinteger · min: 1Optional
Page number (default 1)
pageSizeinteger · min: 1 · max: 100Optional
Items per page (default 20, max 100)
Responses
200
Paginated list of infographics
application/json
401
Unauthorized
get
/infographics/getGET /infographics/get HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"items": [
{
"id": "text",
"imageUrl": "https://example.com",
"title": "text",
"status": 1,
"createdOn": "2025-12-07T14:29:56.926Z"
}
],
"totalCount": 1,
"page": 1,
"pageSize": 1,
"totalPages": 1
}Streams the generated infographic image for the authenticated token.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
infographicIdstringRequired
Infographic request identifier
Responses
200
Binary infographic image stream
application/octet-stream
Responsestring · binary
401
Unauthorized
404
Infographic not found or not ready
502
Upstream asset unavailable
get
/infographics/{infographicId}/downloadGET /infographics/{infographicId}/download HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
binaryLast updated