Skip to main content
POST
/
api
/
doaj
/
articles
/doaj/articles
curl --request POST \
  --url https://api.anysite.io/api/doaj/articles \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@doaj_article",
    "title": "<string>",
    "abstract": "<string>",
    "year": "<string>",
    "month": "<string>",
    "start_page": "<string>",
    "end_page": "<string>",
    "keywords": [],
    "subjects": [],
    "authors": [],
    "identifiers": [],
    "links": [],
    "journal": {
      "@type": "@doaj_article_journal",
      "title": "<string>",
      "publisher": "<string>",
      "country": "<string>",
      "issns": [],
      "language": [],
      "volume": "<string>",
      "number": "<string>"
    },
    "created_at": "<string>",
    "updated_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
id
string
required

DOAJ article id

Minimum string length: 1
Example:

"00001d35ee6a4be2b00522ba742b13fb"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@doaj_article
title
string | null
abstract
string | null
year
string | null
month
string | null
start_page
string | null
end_page
string | null
keywords
string[]
subjects
DoajSubject · object[]
authors
DoajArticleAuthor · object[]
identifiers
DoajArticleIdentifier · object[]
journal
DoajArticleJournal · object
created_at
string | null
updated_at
string | null