ContentApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
| Method | HTTP request | Description |
|---|---|---|
| listPublicContentArticles | GET ContentApi | List 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
| Name | Type | Description | Notes |
|---|---|---|---|
| limit | Integer | Maximum number of records to return. | [optional] [default to 50] |
| offset | Integer | Number of records to skip before collecting results. | [optional] [default to 0] |
| tag | String | Optional 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 VERSION | com.valkyrlabs:ValkyrAI API 1.0.3-SNAPSHOT |
| API ARTIFACT | com.valkyrlabs.valkyrai-api.jar |
| GENERATOR VERSION | org.openapitools.openapi-generator:7.5.0 |
| GENERATOR CLASS | org.openapitools.codegen.languages.SpringCodegen |
| GENERATED DATE | 2026-05-16T11:45:23.900207-07:00[America/Los_Angeles] |