Fetch metadata for Articles from your PX Subscription. The API provides you with the summary of basic information of each article that makes it easy to work with specific data.
Examples:
| URI | Results |
|---|---|
| GET /v1/articles?pageSize=100 | Get first 100 articles. |
| GET /v1/articles?pageSize=100&pageNumber=1 | Get next 100 articles. |
| GET /v1/articles?productId=1234LPSWUBFW | Get Articles of product 1234LPSWUBFW. |
Important: The default pageSize on list calls is 200. The pageSize can be changed by adding a pageSize parameter to the URL (i.e. /v1/articles?pageSize=100) with a max pageSize=500.
To fetch a particular page, use the pageNumber parameter (zero based)
GET
/v1/articles
curl \
--request GET 'https://api.aptrinsic.com/v1/articles'
Response examples (200)
{
"articleExternalViewList": [
{
"articleKCs": [
{
"kcId": "string",
"kcName": "string"
}
],
"articleName": "string",
"author": "string",
"createdDate": 42,
"defaultLanguage": "string",
"id": "string",
"languages": [
{
"languageCode": "string",
"translated": true
}
],
"modifiedBy": {
"id": "string",
"name": "string"
},
"modifiedDate": 42,
"productId": "string",
"productName": "string",
"releaseDate": "2026-05-04T09:42:00Z",
"translationState": "string",
"viewType": "string"
}
],
"pageNumber": 42,
"isLastPage": true
}