IDigBio Download API: Difference between revisions
Catchapman (talk | contribs) m (→Query Endpoint: fixing bad syntax on the example query) |
|||
(6 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
== Overview == | == Overview == | ||
The Download API works by performing the requested query and building a Darwin Core Archive. Once archive generation has begun, the status endpoint can be polled to determine if the generation has been completed. Once the archive generation is completed, the API provides a link to the file for download. If the optional email parameter is supplied on the query request, an email notification will be sent that includes a link to the downloadable file. | The Download API works by performing the requested query and building a Darwin Core Archive. Once archive generation has begun, the status endpoint can be polled to determine if the generation has been completed. Once the archive generation is completed, the API provides a link to the file for download. If the optional email parameter is supplied on the query request, an email notification will be sent that includes a link to the downloadable file. | ||
Line 22: | Line 15: | ||
;;POST requests | ;;POST requests | ||
A query submitted as a POST request must be supplied as JSON in the content body and specify the "Content-Type: application/json" request header. | <s>A query submitted as a POST request must be supplied as JSON in the content body and specify the "Content-Type: application/json" request header.</s> | ||
Documentation for POST requests coming in the future. Please contact us if you have a need for this documentation. | |||
== Query Endpoint == | == Query Endpoint == | ||
Line 30: | Line 24: | ||
<pre> | <pre> | ||
https:// | https://api.idigbio.org/v2/download/?rq={Query in iDigBio query format}&[email={valid email address}] | ||
</pre> | </pre> | ||
Line 38: | Line 32: | ||
A successful request to the query endpoint will return a JSON document that includes a "complete" status flag and a "status_url" link. The "status_url" is a link to the Status Endpoint (see below) which can safely be polled until "complete" is "true". | A successful request to the query endpoint will return a JSON document that includes a "complete" status flag and a "status_url" link. The "status_url" is a link to the Status Endpoint (see below) which can safely be polled until "complete" is "true". | ||
== Status Endpoint == | == Status Endpoint == | ||
Line 45: | Line 38: | ||
<pre> | <pre> | ||
http:// | http://api.idigbio.org/v2/download/{status uuid} | ||
</pre> | </pre> | ||
Line 61: | Line 54: | ||
<pre> | <pre> | ||
https:// | https://api.idigbio.org/v2/download/?rq=%7B%22genus%22%3A%22acer%22%7D&email=donotreply%40idigbio.org | ||
</pre> | </pre> | ||
Line 69: | Line 62: | ||
<pre> | <pre> | ||
$ curl "https:// | $ curl "https://api.idigbio.org/v2/download/?rq=%7B%22genus%22%3A%22acer%22%7D" | ||
{ | { | ||
"complete": false, | |||
"core_source": "indexterms", | |||
"core_type": "records", | |||
"expires": "2015-07-21T14:17:19.715995", | |||
"form": "dwca-csv", | |||
"mediarecord_fields": null, | |||
"mq": null, | |||
"record_fields": null, | |||
"rq": { | |||
"genus": "acer" | |||
}, | |||
"status_url": "https://localhost:30000/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664", | |||
"task_status": "PENDING" | |||
} | } | ||
</pre> | </pre> | ||
Line 88: | Line 85: | ||
<pre> | <pre> | ||
$ curl -s " | $ curl -s "https://api.idigbio.org/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664" | ||
{ | { | ||
"complete": false, | |||
"core_source": "indexterms", | |||
"core_type": "records", | |||
"expires": "2015-07-21T14:17:19.715995", | |||
"form": "dwca-csv", | |||
"mediarecord_fields": null, | |||
"mq": null, | |||
"record_fields": null, | |||
"rq": { | |||
"genus": "acer" | |||
}, | |||
"status_url": "https://localhost:30000/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664", | |||
"task_status": "PENDING" | |||
} | } | ||
</pre> | </pre> | ||
Line 107: | Line 108: | ||
<pre> | <pre> | ||
{ " | { "genus" : "acer" } | ||
</pre> | </pre> | ||
Line 113: | Line 114: | ||
<pre> | <pre> | ||
https:// | https://api.idigbio.org/v2/download/?rq=%7B%22genus%22%3A%22acer%22%7D | ||
</pre> | </pre> | ||
Line 120: | Line 121: | ||
<pre> | <pre> | ||
{ | { | ||
"complete": false, | "complete": false, | ||
" | "core_source": "indexterms", | ||
"expires": "2015- | "core_type": "records", | ||
" | "expires": "2015-07-21T14:17:19.715995", | ||
" | "form": "dwca-csv", | ||
"mediarecord_fields": null, | |||
"mq": null, | |||
"record_fields": null, | |||
"rq": { | |||
"genus": "acer" | |||
}, | |||
"status_url": "https://localhost:30000/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664", | |||
"task_status": "PENDING" | "task_status": "PENDING" | ||
} | } | ||
Line 134: | Line 141: | ||
<pre> | <pre> | ||
{ | { | ||
"complete": true, | "complete": true, | ||
" | "core_source": "indexterms", | ||
"expires": "2015- | "core_type": "records", | ||
" | "expires": "2015-07-21T14:17:19.715995", | ||
" | "form": "dwca-csv", | ||
" | "mediarecord_fields": null, | ||
"mq": null, | |||
"record_fields": null, | |||
"rq": { | |||
"genus": "acer" | |||
}, | |||
"status_url": "https://localhost:30000/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664", | |||
"task_status": "SUCCESS" | "task_status": "SUCCESS" | ||
} | } | ||
</pre> | </pre> |
Latest revision as of 12:05, 8 August 2024
Overview
The Download API works by performing the requested query and building a Darwin Core Archive. Once archive generation has begun, the status endpoint can be polled to determine if the generation has been completed. Once the archive generation is completed, the API provides a link to the file for download. If the optional email parameter is supplied on the query request, an email notification will be sent that includes a link to the downloadable file.
Large queries (and thus large archive file creation) can take multiple hours to complete.
- GET requests
A query submitted as a GET request must be URL-encoded.
- POST requests
A query submitted as a POST request must be supplied as JSON in the content body and specify the "Content-Type: application/json" request header.
Documentation for POST requests coming in the future. Please contact us if you have a need for this documentation.
Query Endpoint
The download service query url:
https://api.idigbio.org/v2/download/?rq={Query in iDigBio query format}&[email={valid email address}]
See iDigBio query format for more information on writing queries.
The "email" parameter is optional. Specifying a valid email address will cause an email notification to be sent.
A successful request to the query endpoint will return a JSON document that includes a "complete" status flag and a "status_url" link. The "status_url" is a link to the Status Endpoint (see below) which can safely be polled until "complete" is "true".
Status Endpoint
The download service status url:
http://api.idigbio.org/v2/download/{status uuid}
Using the "status_url" that was returned in the JSON from the query endpoint, a successful request to the status endpoint will return a JSON document that includes a number of fields including "complete" which is a status flag and "download_url" which, once the generation is completed, is a link to the generated archive.
Query Example - genus acer with email
Consider the following query:
{ "genus" : "acer"}
We could request a download and notification sent to email address "donotreply@idigbio.org" via the following url:
https://api.idigbio.org/v2/download/?rq=%7B%22genus%22%3A%22acer%22%7D&email=donotreply%40idigbio.org
After the downloadable archive file is generated, the "complete" field will be set to "true" and the "download_url" field will include a link to the available file.
Using curl (output formatted with JSON "prettify"), we can see that a completed archive is available at the download_url:
$ curl "https://api.idigbio.org/v2/download/?rq=%7B%22genus%22%3A%22acer%22%7D" { "complete": false, "core_source": "indexterms", "core_type": "records", "expires": "2015-07-21T14:17:19.715995", "form": "dwca-csv", "mediarecord_fields": null, "mq": null, "record_fields": null, "rq": { "genus": "acer" }, "status_url": "https://localhost:30000/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664", "task_status": "PENDING" }
which is the same link that would be included in the "iDigBio Download Ready" email.
If we follow the "status_url" in the above we see similar information:
$ curl -s "https://api.idigbio.org/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664" { "complete": false, "core_source": "indexterms", "core_type": "records", "expires": "2015-07-21T14:17:19.715995", "form": "dwca-csv", "mediarecord_fields": null, "mq": null, "record_fields": null, "rq": { "genus": "acer" }, "status_url": "https://localhost:30000/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664", "task_status": "PENDING" }
Status Endpoint Example
Given the following query JSON:
{ "genus" : "acer" }
becomes the following when url-encoded:
https://api.idigbio.org/v2/download/?rq=%7B%22genus%22%3A%22acer%22%7D
Immediately after the query is run, the "complete" flag is still set to false. There is no archive available for download (yet).
{ "complete": false, "core_source": "indexterms", "core_type": "records", "expires": "2015-07-21T14:17:19.715995", "form": "dwca-csv", "mediarecord_fields": null, "mq": null, "record_fields": null, "rq": { "genus": "acer" }, "status_url": "https://localhost:30000/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664", "task_status": "PENDING" }
If we wait a while and try again, the status changes, and the file is available at the provided download_url:
{ "complete": true, "core_source": "indexterms", "core_type": "records", "expires": "2015-07-21T14:17:19.715995", "form": "dwca-csv", "mediarecord_fields": null, "mq": null, "record_fields": null, "rq": { "genus": "acer" }, "status_url": "https://localhost:30000/v2/download/fd8de83e-7fb7-4edd-8a6a-f11234eec664", "task_status": "SUCCESS" }