Skip to content

Latest commit

 

History

History
89 lines (69 loc) · 1.49 KB

id.md

File metadata and controls

89 lines (69 loc) · 1.49 KB

Cell Line

GET /cell_lines/{id}

Description

This method returns a single cell line.

Summary

Name Value
Request Protocol GET
Requires API Key No
Cache Time 0 seconds

Notes

  • A 404 error is returned if an item is not found.

Sources

Parameters

GET /cell_lines/{id}
Parameter Type Value Required Default Description
indent input boolean no false Add indentation to response
type input - no cell_id Define whether id = cell_id or id = cell_name

Output Formats

  • JSON

Examples

GET /cell_lines/{id}

Output

JSON, using the cell line MCF7.

{
    "id": 895,
    "name": "MCF7",
    "tissue": {
        "id": 7,
        "name": "breast"
    },
    "annotations": [
        {
            "name": "MCF7",
            "datasets": [
                "CCLE",
                "GDSC1000",
                "GRAY",
                "FIMM",
                "CTRPv2"
            ]
        },
        {
            "name": "MCF-7",
            "datasets": [
                "gCSI"
            ]
        },
        {
            "name": "mcf7",
            "datasets": [
                "UHNBreast"
            ]
        }
    ]
}