Skip to main content
GET
/
orders
/
{id}
/
articles
curl -H "Authorization: Bearer cw_ext_your_key" \
  "https://app.chainwire.org/api/external-api/v1/orders/123/articles"
{
  "order_id": 123,
  "press_release_title": "Chainwire Launches New Feature",
  "data": [
    {
      "id": 1,
      "article_url": "https://example.com/chainwire-launches-new-feature",
      "published_at": "2026-01-20 09:00:00",
      "website_domain": "example.com"
    }
  ]
}
Returns the published article URLs, publication dates, and website domains for a specific order. The order must belong to your organization, otherwise a 404 is returned.

Authorization

Authorization
string
required
Bearer token. Example: Bearer cw_ext_your_api_key_here

Path Parameters

id
integer
required
The unique ID of the order.

Response

order_id
integer
The ID of the requested order.
press_release_title
string
Title of the press release attached to this order.
data
array
curl -H "Authorization: Bearer cw_ext_your_key" \
  "https://app.chainwire.org/api/external-api/v1/orders/123/articles"
{
  "order_id": 123,
  "press_release_title": "Chainwire Launches New Feature",
  "data": [
    {
      "id": 1,
      "article_url": "https://example.com/chainwire-launches-new-feature",
      "published_at": "2026-01-20 09:00:00",
      "website_domain": "example.com"
    }
  ]
}