Skip to main content
POST
/
api
/
borme
/
summaries
/borme/summaries
curl --request POST \
  --url https://api.anysite.io/api/borme/summaries \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "date": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@borme_publication",
    "id": "<string>",
    "section": "<string>",
    "section_name": "<string>",
    "category": "<string>",
    "title": "<string>",
    "page_start": 123,
    "page_end": 123,
    "pdf_url": "<string>",
    "xml_url": "<string>",
    "html_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
date
string
required

Gazette day in YYYYMMDD format

Example:

"20260618"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@borme_publication
id
string | null
section
string | null
section_name
string | null
category
string | null
title
string | null
page_start
integer | null
page_end
integer | null
pdf_url
string | null
xml_url
string | null
html_url
string | null