You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: docs/figshare.md
+23-5Lines changed: 23 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,9 @@ So we don't expect files to have an individual size above 20 GB.
19
19
20
20
Figshare requires a token to access its API: [How to get a personnal token](https://info.figshare.com/user-guide/how-to-get-a-personal-token/)
21
21
22
-
### URL
22
+
### Base URL
23
23
24
-
https://api.figshare.com/v2/
24
+
<https://api.figshare.com/v2/>
25
25
26
26
### Query
27
27
@@ -31,19 +31,21 @@ https://api.figshare.com/v2/
31
31
32
32
> We do not have automatic rate limiting in place for API requests. However, we do carry out monitoring to detect and mitigate abuse and prevent the platform's resources from being overused. We recommend that clients use the API responsibly and do not make more than one request per second. We reserve the right to throttle or block requests if we detect abuse.
-[Documentation](https://docs.figshare.com/#search_search_operators) for search operators and searchable attributes
42
44
43
-
We seach MD-related datasets by searching for file types and keywords if necessary. Keywords are searched into `:title:`, `:description:` and `:keywords:` text fields. Example queries:
45
+
We search MD-related datasets by searching for file types and keywords if necessary. Keywords are searched into `:title:`, `:description:` and `:keywords:` text fields. Search query examples:
44
46
45
47
```none
46
-
resource_type.type:"dataset" AND filetype:"tpr"
48
+
:extension: tpr
47
49
```
48
50
49
51
or
@@ -53,6 +55,21 @@ or
53
55
:extension: mdp AND (:title: 'gromacs' OR :description: 'gromacs' OR :keyword: 'gromacs')
54
56
```
55
57
58
+
The POST parameters look like this:
59
+
60
+
```json
61
+
{
62
+
"order": "published_date",
63
+
"search_for": ":extension: xtc",
64
+
"page": 1,
65
+
"page_size": 10,
66
+
"order_direction": "desc",
67
+
"item_type": 3
68
+
}
69
+
```
70
+
71
+
We search only for datasets by probiding the parameter `"item_type": 3`.
72
+
56
73
Example datasets:
57
74
58
75
-[Molecular dynamics of DSB in nucleosome](https://figshare.com/articles/dataset/M1_gro/5840706)
@@ -66,6 +83,7 @@ We search for all file types and keywords. Results are paginated by batch of 100
0 commit comments