Query the Dimensions academic database to find publications, grants, patents, clinical trials, and researchers using the shortwing CLI.
Queries use the Dimensions Search Language (DSL) piped to shortwing.
Authentication: Requires API key from
https://app.dimensions.ai/account/tokens. Configure credentials in
or use environment variables (
,
). See Authentication section in
dsl-reference.md for details.
Important: Lowercase
in the
clause combines filters, but search terms require UPPERCASE
.
-
Use targeted search indexes for relevant results:
bash
# Most specific - title only
echo 'search publications in title_only for "machine learning" return publications limit 20' | shortwing
# Good balance - title and abstract
echo 'search publications in title_abstract_only for "peer feedback AND writing" return publications limit 20' | shortwing
-
Use phrase searches for exact multi-word terms:
bash
echo 'search publications in title_abstract_only for "\"formative assessment\" AND \"higher education\"" return publications limit 20' | shortwing
-
Combine search with filters to narrow scope:
bash
echo 'search publications in title_abstract_only for "\"peer review\"" where year>=2020 and times_cited>10 return publications[title+doi+times_cited+year] limit 20' | shortwing
-
Filter by citation count to find influential papers:
bash
echo 'search publications for "cognitive load" where times_cited>50 return publications sort by times_cited desc limit 10' | shortwing