---
title: "List articles"
method: GET
path: "/api/v1/articles"
tags: ["Editorial"]
---

# List articles

`GET /api/v1/articles`

Published articles, newest first, paginated. Filter by `tag` or by a related
`coin` / `exchange` / `wallet` slug, or free-text `search`. Each row is a summary
(title, subtitle, tags, reading time, hero image, related entities, dates).

## Query parameters

- `page` integer, nullable — Page number (1-based).
- `per_page` integer, nullable — Rows per page (1–50, default 20).
- `locale` string, nullable — Content language (falls back to English).
- `tag` string, nullable — Filter by tag: news, guide, tutorial, explainer, analysis, review, trading, overview or information.
- `coin` string, nullable — Filter to articles related to this coin slug.
- `exchange` string, nullable — Filter to articles related to this exchange slug.
- `wallet` string, nullable — Filter to articles related to this wallet slug.
- `search` string, nullable — Free-text match on heading/subheading.

## Response `200`

- object
  - `data` object[]
    - `id` integer
    - `slug` string
    - `title` string
    - `subtitle` string
    - `locale` string
    - `tags` string[]
    - `reading_time_minutes` integer
    - `hero_image` string
    - `entities` unknown[]
      - unknown
    - `published_at` string
    - `updated_at` string
  - `meta` object
    - `current_page` integer
    - `per_page` integer
    - `total` integer
    - `last_page` integer

---

[API](https://skmtc.net/bitculator/apis/bitculator-data-api.md) · [All operations](https://skmtc.net/bitculator/apis/bitculator-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bitculator/bitculator-data-api/versions/ed1378af68b6/schema)
