Note
This is the API documentation for upcoming features, available on the dev server at https://dev.bio.tools.
This is a lightweight web service with a REST interface, which provides an easy way to access the bio.tools database. An API (Application programming interface) is a protocol intended to be used as an interface by software components to communicate with each other.
If you find a bug, have any questions or suggestions, please get in touch with us.
List and search through all the available resources. Can sort, filter, and search the results.
HTTP GET
https://dev.bio.tools/api/tool/
https://dev.bio.tools/api/t/
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
page | No | Integer | 1 | Result page number |
format | No | String(json, xml, api) | json | Response media type |
q | No | String | Query term, used for searching, matches all attributes | |
sort | No | String(lastUpdate, additionDate, name, affiliation, score) | lastUpdate | Sorts the results by choosen value (score only available when there is a query) |
ord | No | String(desc, asc) | desc | Orders the results by either Ascending or Descending order |
<attribute> | No | String | Filter by <attribute>. List of supported attributes below. |
To filter the results by attribute name, the attribute name has to be added as a parameter to the URL, with the value being the desired search term, e.g. ?name=signalp
These are attributes supported by bio.tools
id, name, topic, function, operation, input,
inputDataFormat, inputDataType, output, outputDataFormat,
outputDataType, homepage, description, version,
accessibility, toolType, collection, contact,
elixirInfo, maturity, operatingSystem, language,
cost, license, documentation, link, download, publication,
credit, owner
curl -X GET "https://dev.bio.tools/api/tool/?page=1&format=json&name=signalp&sort=name&ord=asc&q=protein-signal-peptide-detection"
Key Name | Description | Example |
---|---|---|
count | The total resource count results for your query | 2313 |
previous | Link to the previous page | ?page=4 |
next | Link to the next page | ?page=6 |
list | An array with multiple resources and their relative information | ARRAY |
Obtain information about a single resource.
HTTP GET
https://dev.bio.tools/api/tool/:id/
https://dev.bio.tools/api/t/:id/
https://dev.bio.tools/api/:id/
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
id | Yes | String | Resource unique ID | |
format | No | String(json, xml, api) | json | Response media type |
curl -X GET "https://dev.bio.tools/api/tool/signalp/?format=json"
Note
This method requires the user to be authenticated. Learn how to :ref:`Token`.
HTTP POST
https://dev.bio.tools/api/tool/
https://dev.bio.tools/api/t/
Parameter | Required | Type | Description |
---|---|---|---|
data | Yes | Resource | Resource you wish to register. See an example resource. |
Note
It is possible to specify editing permissions for resources. Learn how to manage :ref:`Editing_permissions`.
Parameter | Required | Allowed values | Description |
---|---|---|---|
Content-Type | Yes | String(application/json, application/xml) | Resource media type |
Authorization | Yes | String('Token <authorization token>') | Authorization header. Learn how to :ref:`Token`. |
curl -X POST -H "Content-Type: application/json" \
-H "Authorization: Token 028595d682541e7e1a5dcf2306eccb720dadafd7" \
-d '<resource>' "https://dev.bio.tools/api/tool/"
Test registering a resource without it actually being saved into the database.
Note
This method requires the user to be authenticated. Learn how to :ref:`Token`.
HTTP POST
https://dev.bio.tools/api/tool/validate/
https://dev.bio.tools/api/t/validate/
Parameter | Required | Type | Description |
---|---|---|---|
data | Yes | Resource | Resource you wish to validate. See an example resource. |
Parameter | Required | Allowed values | Description |
---|---|---|---|
Content-Type | Yes | String(application/json, application/xml) | Resource media type |
Authorization | Yes | String('Token <authorization token>') | Authorization header. Learn how to :ref:`Token`. |
curl -X POST -H "Content-Type: application/json" \
-H "Authorization: Token 028595d682541e7e1a5dcf2306eccb720dadafd7" \
-d '<resource>' "https://dev.bio.tools/api/tool/validate/"
Update a resource description.
Note
This method requires the user to be authenticated. Learn how to :ref:`Token`.
HTTP PUT
https://dev.bio.tools/api/tool/:id/
https://dev.bio.tools/api/t/:id/
https://dev.bio.tools/api/:id/
Parameter | Required | Type | Description |
---|---|---|---|
id | Yes | String | Resource unique ID |
data | Yes | Resource | Description with which you wish to update the resource See an example resource. |
Note
It is possible to specify editing permissions for resources. Learn how to manage :ref:`Editing_permissions`.
Parameter | Required | Allowed values | Description |
---|---|---|---|
Content-Type | Yes | String(application/json, application/xml) | Resource media type |
Authorization | Yes | String('Token <authorization token>') | Authorization header. Learn how to :ref:`Token`. |
curl -X PUT -H "Content-Type: application/json" \
-H "Authorization: Token 028595d682541e7e1a5dcf2306eccb720dadafd7" \
-d '<resource>' "https://dev.bio.tools/api/tool/SignalP"
Test updating a resource without it actually being saved into the database.
Note
This method requires the user to be authenticated. Learn how to :ref:`Token`.
HTTP PUT
https://dev.bio.tools/api/tool/:id/validate/
https://dev.bio.tools/api/t/:id/validate/
https://dev.bio.tools/api/:id/validate/
Parameter | Required | Type | Description |
---|---|---|---|
id | Yes | String | Resource unique ID |
data | Yes | Resource | Description with which you wish to update the resource for validation See an example resource. |
Parameter | Required | Allowed values | Description |
---|---|---|---|
Content-Type | Yes | String(application/json, application/xml) | Resource media type |
Authorization | Yes | String('Token <authorization token>') | Authorization header. Learn how to :ref:`Token`. |
curl -X PUT -H "Content-Type: application/json" \
-H "Authorization: Token 028595d682541e7e1a5dcf2306eccb720dadafd7" \
-d '<resource>' "https://dev.bio.tools/api/tool/SignalP/validate/"
It is possible to manage editing permissions for the registered resources. There are currently three types of editing permissions supported by the system:
A private resource can only be edited by the creator of the resource. This is the default option. In order to set this kind of permission, add the following info into the resource data:
"editPermission": {
"type": "private"
}
Public resource can be modified by any user registered in the system. In order to set this kind of permission, add the following info into the resource data:
"editPermission": {
"type": "public"
}
Specify a list of users in the system that can edit the resource. In order to set this kind of permission, add the following info into the resource data:
"editPermission": {
"type": "private",
"authors": [
"registered_user_1", "registered_user_2"
]
}
Removes a resource from the registry.
Note
This method requires the user to be authenticated. Learn how to :ref:`Token`.
HTTP DELETE
https://dev.bio.tools/api/tool/:id/
https://dev.bio.tools/api/t/:id/
https://dev.bio.tools/api/:id/
Parameter | Required | Type | Description |
---|---|---|---|
id | Yes | String | Resource unique ID |
Parameter | Required | Allowed values | Description |
---|---|---|---|
Authorization | Yes | String('Token <authorization token>') | Authorization header. Learn how to :ref:`Token`. |
curl -X DELETE \
-H "Authorization: Token 028595d682541e7e1a5dcf2306eccb720dadafd7" \
"https://dev.bio.tools/api/tool/SignalP"
Obtain a list of terms registered with tools for some attributes, e.g. a list of names of all tools.
HTTP GET
https://dev.bio.tools/api/used-terms/:attribute
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
attribute | Yes | String(name, topic, functionName, input, output, credits, all) | Attribute for which a list of used terms will be returned | |
format | No | String(json, xml, api) | json | Response media type |
curl -X GET "https://dev.bio.tools/api/used-terms/name/?format=json"
Key Name | Description |
---|---|
data | A list of used terms |
Creates a user account and emails a verification email.
HTTP POST
https://dev.bio.tools/api/rest-auth/registration/
Key Name | Required | Type | Description | Example |
---|---|---|---|---|
username | Yes | String | Account username | username |
password1 | Yes | String | Password | password |
password2 | Yes | String | Repeated password | password |
Yes | String | Account email. The verification email will be sent to this address | [email protected] |
Parameter | Required | Allowed values | Description |
---|---|---|---|
Content-Type | Yes | String(application/json, application/xml) | POST data media type |
curl -X POST -H "Content-Type: application/json" \
-d '{"username":"username", "password1":"password", \
"password2":"password", "email":"[email protected]"}' \
"https://dev.bio.tools/api/rest-auth/registration/"
Verifies a user account based on the emailed verification key.
HTTP POST
https://dev.bio.tools/api/rest-auth/registration/verify-email/
Key Name | Required | Type | Description | Example |
---|---|---|---|---|
key | Yes | String | Verification key from account creation email | ndwowtbpmlk5zxdxfrwgu2822xynjidhizhwosycve7hro1of156hjwdsf1f6gbn |
Parameter | Required | Allowed values | Description |
---|---|---|---|
Content-Type | Yes | String(application/json, application/xml) | POST data media type |
curl -X POST -H "Content-Type: application/json" \
-d '{"key":"ndwowtbpmlk5zxdxfrwgu2822xynjidhizhwosycve7hro1of156hjwdsf1f6gbn"}' \
"https://dev.bio.tools/api/rest-auth/registration/verify-email/"
Logs the user in and returns an authentication token.
HTTP POST
https://dev.bio.tools/api/rest-auth/login/
Key Name | Required | Type | Description | Example |
---|---|---|---|---|
username | Yes | String | Account username | username |
password | Yes | String | Password | password |
Parameter | Required | Allowed values | Description |
---|---|---|---|
Content-Type | Yes | String(application/json, application/xml) | POST data media type |
curl -X POST -H "Content-Type: application/json" \
-d '{"username":"username","password":"password"}' \
"https://dev.bio.tools/api/rest-auth/login/"
Key Name | Description |
---|---|
key | Authentication token |
Returns information about the logged in user account, including a list of registered resource (name, id, version, additionDate, lastUpdate)
Note
This method requires the user to be authenticated. Learn how to :ref:`Token`.
HTTP GET
https://dev.bio.tools/api/rest-auth/user/
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
format | No | String(json, xml, api) | json | Response media type |
Parameter | Required | Allowed values | Description |
---|---|---|---|
Authorization | Yes | String('Token <authorization token>') | Authorization header. Learn how to :ref:`Token`. |
curl -X GET \
-H "Authorization: Token 028595d682541e7e1a5dcf2306eccb720dadafd7" \
"https://dev.bio.tools/api/rest-auth/user/?format=json"
Key Name | Description |
---|---|
username | Account username |
Account email | |
resources | List of registered resources (limited to name, id, version, additionDate, lastUpdate) |
Note
This method requires the user to be authenticated. Learn how to :ref:`Token`.
HTTP POST
https://dev.bio.tools/api/rest-auth/logout/
Parameter | Required | Allowed values | Description |
---|---|---|---|
Authorization | Yes | String('Token <authorization token>') | Authorization header. Learn how to :ref:`Token`. |
curl -X POST
-H "Authorization: Token 028595d682541e7e1a5dcf2306eccb720dadafd7" \
"https://dev.bio.tools/api/rest-auth/logout/"
Sends a password reset email.
HTTP POST
https://dev.bio.tools/api/rest-auth/password/reset/
Key Name | Required | Type | Description | Example |
---|---|---|---|---|
Yes | String | Account email | [email protected] |
Parameter | Required | Allowed values | Description |
---|---|---|---|
Content-Type | Yes | String(application/json, application/xml) | POST data media type |
curl -X POST -H "Content-Type: application/json" \
-d '{"email":"[email protected]"}' \
"https://dev.bio.tools/api/rest-auth/password/reset/"
Confirms a password reset using uid and token from a password reset email.
HTTP POST
https://dev.bio.tools/api/rest-auth/password/reset/confirm/
Key Name | Required | Type | Description | Example |
---|---|---|---|---|
uid | Yes | String | UID from password reset email | MQ |
token | Yes | String | Token from password reset email | 4ct-67e90a1ab4f22fbb9b9f |
password1 | Yes | String | New password | new_password |
password2 | Yes | String | New password repeated | new_password |
Parameter | Required | Allowed values | Description |
---|---|---|---|
Content-Type | Yes | String(application/json, application/xml) | POST data media type |
curl -X POST -H "Content-Type: application/json" \
-d '{"uid":"MQ", "token":"4ct-67e90a1ab4f22fbb9b9f", \
"password1":"new_password", "password2":"new_password"}' \
"https://dev.bio.tools/api/rest-auth/password/reset/confirm/"
Compile stats about a the registry.
HTTP GET
https://dev.bio.tools/api/stats
curl -X GET "https://dev.bio.tools/api/stats"