List all available gene names
GET
/genes
const url = 'https://your-candig-domain/genomics/htsget/v1/genes?genome=hg38';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://your-candig-domain/genomics/htsget/v1/genes?genome=hg38'List all gene names available in NCBIRefSeq database.
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”genome
Reference genome this variant file is based on
string
Specify reference genome, either hg37 or hg38. Default is hg38.
Responses
Section titled “Responses”Success
Media typeapplication/json
object
results
Array<string>
Examplegenerated
{ "results": [ "example" ]}