Skip to main content
GET
/
gateway
/
v1
/
news
/
detail
News Article Detail
curl --request GET \
  --url https://api.ask.surf/gateway/v1/news/detail
{
  "data": {
    "content": "<string>",
    "id": "<string>",
    "published_at": 123,
    "title": "<string>",
    "project_id": "<string>",
    "project_name": "<string>",
    "source": "<string>",
    "summary": "<string>",
    "url": "<string>"
  },
  "meta": {
    "cached": true,
    "credits_used": 123
  },
  "$schema": "<string>"
}

Query Parameters

id
string
required

Article ID (returned as id in feed/search results)

Example:

"abc123"

Response

OK

data
object
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/DataObjectResponseNewsArticleDetailItem.json"