GET
/
static
/
projects
/
{projectId}
/
spaces
/
{spaceId}
/
news
/
instances
/
{instanceId}
/
news
curl --request GET \
  --url https://cdn.r25.io/static/projects/{projectId}/spaces/{spaceId}/news/instances/{instanceId}/news \
  --header 'x-r25-ac-api-key: <x-r25-ac-api-key>' \
  --header 'x-r25-ac-api-secret: <x-r25-ac-api-secret>'
{
  "totalCount": 999999,
  "currentPage": 1,
  "list": [
    {
      "contentId": "<string>",
      "projectId": "<string>",
      "spaceId": "<string>",
      "name": "<string>",
      "alias": "<string>",
      "status": "draft",
      "reservedAt": 123,
      "closingAt": 123,
      "openingAt": 123,
      "values": {
        "title": "<string>",
        "body": {},
        "thumbnail": {
          "mediaId": "<string>",
          "media": {
            "name": "<string>",
            "assets": [
              {
                "path": "media/00000000000000000000000.png",
                "accessUrl": "<string>"
              }
            ],
            "type": "image",
            "mediaId": "<string>",
            "projectId": "<string>",
            "spaceId": "<string>",
            "accessUrl": "<string>",
            "thumbnailAccessUrl": "<string>",
            "meta": {
              "ext": "png",
              "mimetype": "image/png",
              "asset": "AdobeAnimate_cjs_1_0_0"
            },
            "fileSize": 1234567,
            "duration": 1234567,
            "operations": [
              {
                "type": "trim",
                "orientation": "top-left"
              }
            ],
            "thumbnailOperations": [
              {
                "type": "trim",
                "orientation": "top-left"
              }
            ],
            "alias": "<string>",
            "originalUrl": "<string>",
            "status": "published",
            "signed": true
          }
        },
        "sponsors": [
          {
            "name": "<string>"
          }
        ],
        "seo": {
          "isPreventCrawling": true,
          "canonicalUrl": "<string>"
        },
        "isOutline": true,
        "share": {
          "x": {
            "text": "<string>",
            "users": [
              "<string>"
            ],
            "hashTags": [
              "<string>"
            ],
            "followButtonUsers": [
              {
                "userId": "<string>",
                "name": "<string>"
              }
            ]
          }
        },
        "isRss": true
      },
      "category": {
        "categoryId": "<string>",
        "name": "<string>",
        "alias": "<string>"
      },
      "tags": [
        {
          "tagId": "<string>",
          "name": "<string>",
          "alias": "<string>"
        }
      ],
      "createdAt": 123,
      "updatedAt": 123
    }
  ]
}

Headers

x-r25-ac-api-key
string
required

コンソールで取得したAPIキーを指定してください。

x-r25-ac-api-secret
string
required

コンソールで取得したAPIシークレットを指定してください。

Path Parameters

projectId
string
required

ご自身のプロジェクトIDを指定してください。

spaceId
string
required

ご自身のスペースIDを指定してください。

instanceId
string
required

ご自身のアプリケーションIDを指定してください。

Query Parameters

page
integer
default:1

sizeで指定した数で何ページ目のリソースを取得するか指定できます。

Required range: x >= 1
size
integer
default:10

最大何個のリソースを取得するか指定できます。

Required range: 1 <= x <= 99
order
string

リソースの順番を指定できます。カンマ区切りで、複数の値を指定できます。複数指定の場合、指定した順にソートされます。 e.g. createdAt:desc,updatedAt:asc

contentIds
string

コンテンツIDを複数指定して取得できます。カンマ区切りで、複数の値を指定できます。

categoryId
string

カテゴリーIDまたはカテゴリーエイリアスを指定して取得できます。

tagIdsOrAliases
string[]

タグIDまたはタグエイリアスを複数指定して取得できます。カンマ区切りで、複数の値を指定できます。

rss
boolean
default:false

trueを指定することで、RSS配信設定がONのコンテンツのみ取得できます。

q
string

全文検索を利用して取得できます。

Required string length: 1 - 100
includeCategory
boolean
default:false

trueを指定することで、カテゴリー詳細情報も取得できます。

includeTags
boolean
default:false

trueを指定することで、タグ詳細情報も取得できます。

Response

200
application/json
ニュースコンテンツ一覧
totalCount
integer
required
Example:

999999

currentPage
integer
required
Example:

1

list
object[]
required