Retrieve Proteins for a Gene Identifier

get

/ohfapi/cg/v3.3/genes/{id}/proteins

This endpoint supports the retrieval of Proteins for a Gene Row ID passed. It returns Protein information like Protein Identifier, Name, Accession, Ensembl Version, Protein References and other Protein associated information.

Request

Supported Media Types
Path Parameters
Query Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : PageableCollection
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : Serializable
Type: object

400 Response

Invalid parameters supplied

404 Response

Gene protein(s) not found
Back to Top

Examples

The following example submits a GET request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/genes/50259/proteins

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
  "resourceType": "Proteins",
  "items": [
    {
      "proteinId": 78371,
      "proteinName": "EGFR_HUMAN",
      "accession": "P00533; O00688; O00732; P06268; Q14225; Q68GS5; Q92795; Q9BZS2; Q9GZX1; Q9H2C9; Q9H3C9; Q9UMD7; Q9UMD8; Q9UMG5;",
      "ensemblVersion": "GRCH37.75",
      "proteinReferences": [
        {
          "referenceId": "ENSP00000275493",
          "database": "Ensembl"
        },
        {
          "referenceId": "X00588",
          "database": "EMBL"
        },
        {
          "referenceId": "U95089",
          "database": "EMBL"
        },
        {
          "referenceId": "U48722",
          "database": "EMBL"
        }  "geneReference": {
        "reference": "/ohfapi/cg/v3.3/genes/50259"
      }
    }
  ],
  "count": 1,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/genes/50259/proteins"
    }
  ]
}
Back to Top