# Accessing Articles
In order to access articles available to you, you can use any of the following endpoints:
Endpoint | Description |
---|---|
GET /articles (opens new window) | Returns a list of all articles available to you |
GET /articles/{article_id} (opens new window) | Returns the article with the provided article_id |
GET /{article_type_or_supplier_slug}/articles (opens new window) | Returns a list of articles of a given type (opens new window) or supplier |
GET /{article_type}/{supplier_slug}/articles (opens new window) | Returns a list of articles of a given type (opens new window) and supplier |
# Example Request
GET /substrate/bounty_soap_inc/articles
# Example Response
[
{
"id": "7cbf51bd-35a8-47a1-84a2-57aa63140234",
"base_unit": "sheet",
"coated": "both sides",
"description": null,
"finish": "GLOSS COATED",
"kind": "paper",
"name": "Bounty gloss",
"supplier_id": "b1475f65-236c-58b8-96e1-e1778b43beb7",
"supplier": {
"id": "b1475f65-236c-58b8-96e1-e1778b43beb7",
"display_name": "Bounty Soap Inc",
"brand_color": "#1D8CCB",
"logo_url": null,
"links": [
{
"rel": "self",
"href": "/consumers/api/v1/suppliers/sappi"
}
]
},
"created_at": "2020-10-13T10:34:50.322Z",
"updated_at": "2021-03-16T13:31:23.658Z"
},
{
"id": "03a3eacf-08fc-424b-af75-9febead1d79b",
"base_unit": "sheet",
"coated": "both sides",
"description": null,
"finish": "MATT COATED",
"kind": "paper",
"name": "Bounty matt",
"supplier_id": "b1475f65-236c-58b8-96e1-e1778b43beb7",
"supplier": {
"id": "b1475f65-236c-58b8-96e1-e1778b43beb7",
"display_name": "Bounty Soap Inc",
"brand_color": "#1D8CCB",
"logo_url": null,
"links": [
{
"rel": "self",
"href": "/consumers/api/v1/suppliers/sappi"
}
]
},
"created_at": "2020-10-13T10:37:52.612Z",
"updated_at": "2021-03-16T13:31:58.310Z"
}
]