---
title: "Get Dataset Article"
method: GET
path: "/v2/datasets/{dataset}/{url}"
tags: ["datasets"]
---

# Get Dataset Article

`GET /v2/datasets/{dataset}/{url}`

Get a full article from a supported news dataset.

Contact your Account Executive for available datasets.

**Headers:**
- `Authorization`: Bearer {api_key} - Captain API key for authentication
- `X-Organization-ID`: Organization UUID

**URL Path:**
- `dataset`: The dataset name
- `url`: Full article URL appended to the path

**Returns:**
Article data including title, author, date, and full content in markdown format.

**Example:**
```
GET /v2/datasets/latimes/https://www.latimes.com/example/news_example.html
```

## Path parameters

- `dataset` string, required
- `url` string, required

## Response `200`

Successful Response

- DatasetArticleResponse — Response for GET /v2/datasets/{dataset}/{url}
  - `author` string, nullable
  - `chars` integer, nullable
  - `content` string, nullable — Full article content in markdown format
  - `dataset` string, required
  - `date` string, nullable
  - `error` string, nullable — Error message if request failed
  - `title` string, nullable
  - `url` string, required

## Other responses

- `400` — Invalid dataset or URL
- `401` — Missing or invalid API key
- `403` — API key does not belong to organization
- `500` — Internal server error
- `503` — Dataset fetcher not available

---

[API](https://skmtc.dev/runcaptain/apis/api-reference.md) · [All operations](https://skmtc.dev/runcaptain/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/runcaptain/api-reference/revisions/fe4649e3f4aa/schema)
