Skip to main content
POST
/
api
/
doaj
/
articles
/
search
/doaj/articles/search
curl --request POST \
  --url https://api.anysite.io/api/doaj/articles/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "*",
  "sort": "created_date:desc"
}
'
[
  {
    "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
count
integer
required

Number of articles to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
query
string
default:*

Search query. A bare word matches across all fields; field-scoped lookups use the bibjson syntax, e.g. 'bibjson.title:robotics', 'bibjson.author.name:Smith', 'doi:10.1002/eng2.13035', 'issn:2577-8196'

Examples:

"robotics"

"bibjson.title:machine learning"

"issn:2577-8196"

sort
string | null

Sort order as 'field:direction', e.g. 'created_date:desc', 'last_updated:desc', 'bibjson.title.exact:asc'

Example:

"created_date:desc"

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