Skip to main content

ContentApi

valkyrai-api

All URIs are relative to http://localhost:8080/v1

MethodHTTP requestDescription
listPublicContentArticlesGET ContentApiList public published blog articles

listPublicContentArticles

ContentData
listPublicContentArticles(limitoffsettag)

List public published blog articles

Returns ContentData records intended for public automation workflows. This endpoint is scoped to published blog/article records and excludes draft/private content.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ContentApi;


ContentApi apiInstance = new ContentApi();
Integer limit = 50; // Integer | Maximum number of records to return.
Integer offset = 0; // Integer | Number of records to skip before collecting results.
String tag = "tag_example"; // String | Optional tag name to further filter the published blog/article subset.

try {
ContentData result = apiInstance.listPublicContentArticles(limitoffsettag);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ContentApi#listPublicContentArticles");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
limitIntegerMaximum number of records to return.[optional] [default to 50]
offsetIntegerNumber of records to skip before collecting results.[optional] [default to 0]
tagStringOptional tag name to further filter the published blog/article subset.[optional]

Return type

ContentData

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Generated Version Details

~value
GENERATOR VERSIONcom.valkyrlabs:ValkyrAI API 1.0.3-SNAPSHOT
API ARTIFACTcom.valkyrlabs.valkyrai-api.jar
GENERATOR VERSIONorg.openapitools.openapi-generator:7.5.0
GENERATOR CLASSorg.openapitools.codegen.languages.SpringCodegen
GENERATED DATE2026-05-16T11:45:23.900207-07:00[America/Los_Angeles]