This webapp provides the public API. Need to know:
-
RESTful API.
-
Supports XML or JSON.
-
Only information marked as public can be queried.
-
Sandbox: http://pub.sandbox.orcid.org
-
Public Production: http://pub.orcid.org
Profile | /orcid-profile | Returns all public data for the contributor. |
Bio | /orcid-bio | Returns name and affiliation data for the contributor. |
Works | /orcid-works | Returns the list of works for the contributor. |
Search | /search/orcid-bio? | Given whatever metadata provided, return a ranked list of potential contributors identified by that metadata. |
-
XML
curl -H "Accept: application/orcid+xml" 'http://pub.sandbox.orcid.org/0000-0002-6657-1928/orcid-bio' -L -i
-
JSON
curl -H "Accept: application/orcid+json" 'http://pub.sandbox.orcid.org/0000-0002-6657-1928/orcid-bio' -L -i
-
JSONP
curl -H "Accept: application/orcid+json" 'http://pub.sandbox.orcid.org/0000-0002-6657-1928/orcid-bio?callback=test' -L -i
See LICENSE.md