Difference between revisions of "OJ Break API Reference"
(→API Information and Access) |
|||
Line 2: | Line 2: | ||
OJ_Break is the name of the xBio:D RESTful API service to facilitate discovery of data within the xBio:D database. The API can respond with JavaScript Object Notation (JSON), XML, or JSON with padding (JSONP) and accepts HTTP GET and POST requests indiscriminately. The backend of the API is written in Oracle's PL/SQL database language, which is fast but often inflexible, while a Python presentation layer mitigates request handling and authentication. | OJ_Break is the name of the xBio:D RESTful API service to facilitate discovery of data within the xBio:D database. The API can respond with JavaScript Object Notation (JSON), XML, or JSON with padding (JSONP) and accepts HTTP GET and POST requests indiscriminately. The backend of the API is written in Oracle's PL/SQL database language, which is fast but often inflexible, while a Python presentation layer mitigates request handling and authentication. | ||
+ | |||
+ | The reference for version 2 of the API can be found here: [[OJ_Break_Version_2_API_Reference]] | ||
Revision as of 16:20, 6 April 2015
Introduction
OJ_Break is the name of the xBio:D RESTful API service to facilitate discovery of data within the xBio:D database. The API can respond with JavaScript Object Notation (JSON), XML, or JSON with padding (JSONP) and accepts HTTP GET and POST requests indiscriminately. The backend of the API is written in Oracle's PL/SQL database language, which is fast but often inflexible, while a Python presentation layer mitigates request handling and authentication.
The reference for version 2 of the API can be found here: OJ_Break_Version_2_API_Reference
Contents
- 1 API Information and Access
- 2 Procedural Reference
- 2.1 Agent
- 2.2 Taxon
- 2.2.1 getTaxonStats
- 2.2.2 getTaxonInfo
- 2.2.3 getTaxonHierarchy
- 2.2.4 getIncludedTaxa
- 2.2.5 getTaxonSynonyms
- 2.2.6 getLocalities
- 2.2.7 getLocalities
- 2.2.8 getCuids
- 2.2.9 getCuids
- 2.2.10 getTypes
- 2.2.11 getInsts
- 2.2.12 getTaxonLiterature (deprecated)
- 2.2.13 getTaxonLit
- 2.2.14 getAssociations
- 2.2.15 getHabitats
- 2.2.16 getTaxonMedia
- 2.2.17 getTaxonBreakdown
- 2.2.18 getTaxonPhenology
- 2.2.19 getTaxonNewTaxaByPub
- 2.2.20 getTaxonNewTaxaByYear
- 2.2.21 getTaxonStatsForYear
- 2.3 Occurrence
- 2.4 Locality
- 2.5 Place / Geopolitical Entity
- 2.6 Literature
- 2.7 Journal
- 2.8 Institution
- 2.9 Text Search
- 3 Data Type Glossary
API Information and Access
This page specifies the methods and data defined by OJ_Break Version 1. Using the OJ_Break Version 1 API requires calling methods with corresponding, method specific parameters (found in this page) and a few other required parameters. These include specifying a return format and an API access key.
Example: http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonStats?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC
To read more about using the OJ_Break Version 1 API, go to OJ_Break API Access.
Procedural Reference
Agent
getCollectorInfo
Description
Parameters
- collector_id: number
- format: string
- key: string
Return
- collector_info: array of author_info
Example
getAuthorPubs
Description
Parameters
- author_id: number
- format: string
- key: string
Return
- pubs: array of literature_extended
Example
getCollTrips2
Description
Parameters
- collector_id: number
- format: string
- key: string
Return
- coll_trips: array of collection_basic, taxon_basic, loc_coords, and collector.
Example
getAuthorTaxa
Description
Parameters
- author_id: number
- format: string
- key: string
Return
taxa: array of taxon_basic
Example
Taxon
getTaxonStats
Description
Get some basic taxonomic statistics for a taxon from a tnuid.
Parameters
- tnuid: number
- format: string
- key: string
Return
- taxon: string
- author: string
- stats: taxon_stats
Example
getTaxonInfo
Description
Get some basic taxonomic information for a taxon from a tnuid.
Parameters
- tnuid: number
- inst_id: number
- format: string
- key: string
Return
- taxon_rel_extended class with below extensions
- valid_taxon: taxon_basic (only present when defined)
- parent_taxon: taxon_basic
- hier: taxon_hierarchy
- source: taxon_source
- common_names: array of common_name
- orig_desc: contrib_literature_basic (only present when defined)
- stats: taxon_info_stats
- contribs: array of contribution
Example
getTaxonHierarchy
Description
Get the taxonomic hierarachy in which a taxon is at the terminal node from a tnuid.
Parameters
- tnuid: number
- format: string
- key: string
Return
- taxon: string
- author: string
- hier: taxon_hierarchy
Example
getIncludedTaxa
Description
Get the taxa that are directly included within a taxon but not synonymous with it.
Parameters
- tnuid: number
- inst_id: number
- showSyns: boolean_flag
- showFossils: boolean_flag
- types_only: boolean_flag
- show_num_spms: boolean_flag
- format: string
- key: string
Return
- tnuid: number
- parent_tnuid: number
- includedTaxa: array of taxon_extended
Example
getTaxonSynonyms
Description
Get the taxa that are objectively or subjectively synonymous with a taxon.
Parameters
- tnuid: number
- showFossils: boolean_flag
- format: string
- key: string
Return
- synonyms: array of taxon_rel_extended
Example
getLocalities
Description
Get the localities from vouchered and unvouchered records for a taxon.
Parameters
- tnuid: number
- inst_id: number
- precDecimals: number
- showChildren: boolean_flag
- format: string
- key: string
Return
- localities: array of loc_coords
Example
getLocalities
Description
Get the localities within geopolitical divisions from vouchered and unvouchered records for a taxon.
Parameters
- tnuid: number
- pnids: array of pnid
- inst_id: number
- precDecimals: number
- showChildren: boolean_flag
- format: string
- key: string
Return
- localities: array of loc_coords
Example
getCuids
Description
Get the occurrence identifiers (collecting unit IDs) for a taxon.
Parameters
- tnuid: number
- showChildren: boolean_flag
- inst_id: number
- pnids: array of pnid
- format: string
- key: string
Return
- cuids: array of cuid
Example
getCuids
Description
Get the occurrence identifiers (collecting unit IDs) for selected taxa.
Parameters
- tnuids: array of tnuid
- pnids: array of pnid
- format: string
- key: string
Return
- cuids: array of cuid
Example
getTypes
Description
Gets information and specimen types for a specified taxon.
Parameters
- tnuid: number
- showSyns: boolean_flag
- inst_id: number
- primary_only: boolean_flag
- taxon_author_search: string
- offset: number
- limit: number
- format: string
- key: string
Return
- num_records: number
- types: array of type_extended
Example
getInsts
Description
Gets institutions which hold specimens for a selected taxon.
Parameters
- tnuid: number
- format: string
- key: string
Return
- collections: array of collection_extended
Example
getTaxonLiterature (deprecated)
Description
Deprecated. Use getTaxonLit instead
Parameters
- tnuid: number
- showSyns: string
- format: string
- key: string
Return
- lit: pubs
Example
getTaxonLit
Description
Preferred. Get literature for a selected taxon.
Parameters
- tnuid: number
- showSyns: boolean_flag
- format: string
- key: string
Return
- pubs: array of pub_extended
Example
getAssociations
Description
Get evolutionary relationships for a certain taxon.
Parameters
- tnuid: number
- rank_grouping: string
- format: string
- key: string
Return
- associations: array of association
Example
getHabitats
Description
Get descriptions of the habitats that a selected specimen inhabits.
Parameters
- tnuid: number
- format: string
- key: string
Return
- habitats: array of habitat
Example
getTaxonMedia
Description
Get images, videos, or sound clips of a selected taxon.
Parameters
- tnuid: number
- format: string
- key: string
Return
- media: array of media_basic
Example
getTaxonBreakdown
Description
Get count of genders and total specimen included in the current rank.
Parameters
- tnuid: number
- format: string
- key: string
Return
- taxa: array of taxon_basic with below extension
- count: number
- sex: array of spm_sex
Example
getTaxonPhenology
Description
Get taxon specimens by date.
Parameters
- tnuid: number
- format: string
- key: string
Return
- spms: array of below elements
- date: string
- sort_date: string
- cuid: string
Example
getTaxonNewTaxaByPub
Description
Get count of new specimens for a specific taxon by publication.
Parameters
- tnuid: number
- validOnly: boolean_flag
- format: string
- key: string
Return
- pubs: array of literature_extended with below extension
- taxa_num: string
Example
getTaxonNewTaxaByYear
Description
Get count of new specimens for a specific taxon by year.
Parameters
- tnuid: number
- validOnly: string
- format: string
- key: string
Return
- years: array of below elements
- taxa_num: string
- year: string
Example
getTaxonStatsForYear
Description
Get stats, such as image count, new genera introduced, new specimen introduced, and more by year for a selected taxon.
Parameters
- tnuid: number
- stats_year: number
- format: string
- key: string
Return
- stats: array of below elements
- new_spm_num: number
- all_spm_num: number
- new_taxa_spm_num: array of number
- all_taxa_spm_num: array of number
- new_images_num: number
- all_images_num: number
- spm_years: array of string
- images_years: array of string
Example
Occurrence
Specimen Record
getSpmInfo
Description
Get info for a specific specimen occurrence.
Parameters
- cuid: string
- format: string
- key: string
Return
- spmInfo: record_vouchered
Example
getSpmsInfo
Description
Get info for multiple specimen occurrences.
Parameters
- cuids: array of string
- format: string
- key: string
Return
- spmsInfo: array of record_vouchered
Example
Unvouchered Record
getUnvoucheredRecord
Description
Get specimen record information for a selected unvouchered specimen.
Parameters
- unv_id: number
- format: string
- key: string
Return
- unvoucheredRecord: record_unvouchered
Example
getUnvoucheredRecords
Description
Get unvouchered specimen records for a selected taxon and place.
Parameters
- tnuid: number
- showChildren: string
- pnids: array of number
- format: string
- key: string
Return
- unvoucheredRecords: array of record_unvouchered
Example
Locality
getLocalityInfo
Description
Get basic information for a specific locality, including specimen occurrences, place hierarchy, and coordinates.
Parameters
- loc_id: number
- tnuid: number
- inst_id: number
- per_id: number
- pnid: number
- showChildren: string
- completeSpmInfo: string
- format: string
- key: string
Return
- locInfo: array of loc_info with below extensions
- hier: array of place
- cuids: array of record_vouchered (only present if specified) or array of cuid
- sex: array of spm_sex
Example
getUnvLocalityInfo
Description
Get locality information and occurrences (specimens) for a selected locality. The request can be narrowed down further by selected multiple parameter options.
Parameters
- loc_id: number
- tnuid: number
- per_id: number
- pnid: number
- showChildren: string
- format: string
- key: string
Return
- locInfo: loc_info with below extensions
- hier: array of place
- cuids: array of cuid
Example
Place / Geopolitical Entity
getPlaceInfo
Description
Get basic place information including the place hierarchy, number of specimens, and number of species.
Parameters
- place_id: number
- format: string
- key: string
Return
- place_info: place with below extension
- hier: array of place
- num_species: number
- num_spms: number
Example
getSubdivisions
Description
Get smaller levels of divisions for a selected place.
Parameters
- place_id: number
- format: string
- key: string
Return
- subdivs: array of place
Example
getGeoTaxa
Description
Get taxonomic information from a specified place.
Parameters
- place_id: number
- format: string
- key: string
Return
- taxa: array of taxon_basic with below extensions
- valid_taxon: taxon_basic (only present when defined)
- hier: taxon_hierarchy
- count: number
- rank: string
Example
getGeoCollTrips
Description
Get collecting trips info for a specified place.
Parameters
- place_id: number
- format: string
- key: string
Return
- coll_trips: array of loc_basic and collector.
Example
getGeoCollTrips2
Description
Get collecting trips and taxa info for a specified place.
Parameters
- place_id: number
- format: string
- key: string
Return
- coll_trips: array of taxon_basic, collection, collector and loc_basic with below extension
- valid_taxon: taxon_basic (only present when defined)
Example
getGeoInsts
Description
Get institutions from a selected place.
Parameters
- place_id: number
- format: string
- key: string
Return
- collections: array of collection_extended
Example
Literature
getLitReference
Description
Get the reference for a selected publication.
Parameters
- pub_id: number
- format: string
- key: string
Return
- pub_ref: literature_extended
Example
getLitParts
Description
Get parts of the selected publication, such as pages, pdf urls, chapters, titles, authors, and more.
Parameters
- pub_id: number
- format: string
- key: string
Return
- pub_parts: array of literature_extended
Example
getPubTaxonCitation
Description
Get cited taxon information from a selected publication.
Parameters
- pub_id: number
- format: string
- key: string
Return
- pub_cits: array of pub_basic and taxon_basic with below extensions
- tnucid: number
- rank: string
- public: string
- author: string
Example
getPubAssocCitation
Description
Parameters
- pub_id: number
- format: string
- key: string
Return
- assoc_cits: array of ..
Example
Journal
getJournalInfo
Description
Parameters
- jrnl_id: number
- format: string
- key: string
Return
- journal_info: array of below elements
- name: string
- url: string
- is_public: string
- copyright_holder: string
- num_articles: number
- num_pdfs: number
- num_taxa: number
- last_article_time: string
Example
getJournalPubs
Description
Parameters
- jrnl_id: number
- format: string
- key: string
Return
- pubs: array of literature_extended
Example
getJournalTaxa
Description
Parameters
- jrnl_id: number
- format: string
- key: string
Return
- taxa: array of taxon_basic
Example
Institution
getCollectionInfo
Description
Parameters
- inst_id: number
- format: string
- key: string
Return
- collection_info: array of collection_extended with below extensions
- vouchered: boolean
- num_prim_types: number
- num_sec_types: number
- num_species: number
- last_spm_time: string
- oldest_spm: array of below elements
- cuid: string
- coll_date: string
Example
getPrimaryTypes
Description
Get specimen of which the description of a new species is based.
Parameters
- inst_id: number
- format: string
- key: string
Return
- types: array of type
Example
getSecondaryTypes
Description
Get specimen that are occurrences of a specific species, but not a primary type.
Parameters
- inst_id: number
- format: string
- key: string
Return
- types: array of type
Example
getInstTaxa
Description
Get taxa and related taxonomic information from a selected institution.
Parameters
- inst_id: number
- format: string
- key: string
Return
- taxa: array of taxon_extended with below extension
- hier: taxon_hierarchy
Example
getInstCollTrips2
Description
Get collecting trip events and the specimen collected for a selected institution.
Parameters
- inst_id: number
- format: string
- key: string
Return
- coll_trips: array of taxon_basic, collection, collector, and loc_basic.
Example
getInstPubs
Description
Get published literature from a selected institution.
Parameters
- inst_id: number
- format: string
- key: string
Return
- pubs: array of literature_extended
Example
Text Search
getSearchResults
Description
Get database results from a text keyword search.
Parameters
- name: string
- limit: number
- categoryLimit: string
- format: string
- key: string
Return
- taxon_results: array of below extensions
- taxa: array of taxon_extended with below extension
- lsid: number
- count: number
- taxa: array of taxon_extended with below extension
- cuid_results: array of below extensions
- cuids: array of cuids
- count: number
- agent_results: array of below extensions
- agents: array of below extensions
- type: string
- id: number
- name: string
- inst: string
- count: number
- agents: array of below extensions
- inst_results: array of below extensions
- inst: array of collection_extended
- count: number
- place_results: array of below extensions
- places: array of place with below extension
- hier: array of place
- count: number
- places: array of place with below extension
- journal_results: array of below extensions
- journals: array of below extensions
- name: string
- id: number
- count: number
- journals: array of below extensions
Example
getTaxaFromText
Description
Get taxa results from a selected search keyword.
Parameters
- name: string
- limit: number
- nameOnly: string
- format: string
- key: string
Return
- taxa: array of taxon_extended with below extensions
- lsid: number
- count: number
Example
getCuidsFromText
Description
Get occurrence results from a selected search keyword.
Parameters
- name: string
- limit: number
- format: string
- key: string
Return
- cuids: array of cuid
- count: number
Example
getAgentsFromText
Description
Get agent (person and/or party) results from a selected search keyword.
Parameters
- name: string
- limit: number
- includeParty: string
- format: string
- key: string
Return
- agents: array of below elements
- id: number
- type: string
- name: string
- inst: string
- count: number
Example
getInstFromText
Description
Get institution/collection results from a selected search keyword(s).
Parameters
- name: string
- limit: number
- format: string
- key: string
Return
- inst: array of collection_extended
- count: number
Example
getJournalsFromText
Description
Get journal results from a selected search keyword(s).
Parameters
- name: string
- limit: number
- format: string
- key: string
Return
- journals: array of below elements
- name: string
- id: number
- count: number
Example
getOrgsFromText
Description
Get organization results for a selected search keyword(s).
Parameters
- name: string
- limit: number
- format: string
- key: string
Return
- orgs: array of below elements
- name: string
- id: number
- count: number
Example
getPlacesFromText
Description
Parameters
- name: string
- limit: number
- format: string
- key: string
Return
- places: array of place with below extension
- hier: array of place
- count: number
Example
getLocalitiesFromText
Description
Parameters
- name: string
- limit: number
- format: string
- key: string
Return
- locs: array of below elements
- name: string
- id: number
- count: number
Example
getCollMethodsFromText
Description
Parameters
- name: string
- limit: number
- format: string
- key: string
Return
- coll_methods: array of below elements
- name: string
- id: number
- count: number