> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.enigmagenomics.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.enigmagenomics.com/_mcp/server.

# Get reports list for a sample id

GET https://api.enigmagenomics.com/reports/EG23A100

The **Report Listing API** (`GET {{baseUrl}}/reports/EG23A100`) returns the list of reports associated with a specific sample ID (in your example, `EG23A100`).

- **Method:** GET
    
- **Path:** `/reports/{sampleId}`
    
- **Purpose:** Given a sample identifier, it retrieves metadata for all reports generated for that sample (e.g., available report types, versions, and statuses).
    
- **Auth / Variables:** Uses `{{baseUrl}}` and likely an API key variable such as `{{apiKey1}}` for authorization, depending on your collection’s auth setup.

Reference: https://docs.enigmagenomics.com/enigma-lis-integrations/reports/get-reports-list-for-a-sample-id

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /reports/EG23A100:
    get:
      operationId: Get reports list for a sample id
      summary: Get reports list for a sample id
      description: >-
        The **Report Listing API** (`GET {{baseUrl}}/reports/EG23A100`) returns
        the list of reports associated with a specific sample ID (in your
        example, `EG23A100`).


        - **Method:** GET
            
        - **Path:** `/reports/{sampleId}`
            
        - **Purpose:** Given a sample identifier, it retrieves metadata for all
        reports generated for that sample (e.g., available report types,
        versions, and statuses).
            
        - **Auth / Variables:** Uses `{{baseUrl}}` and likely an API key
        variable such as `{{apiKey1}}` for authorization, depending on your
        collection’s auth setup.
      tags:
        - reports
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/reports_Get reports list for a sample
                  id_Response_200
servers:
  - url: https://api.enigmagenomics.com
    description: https://api.enigmagenomics.com
components:
  schemas:
    ReportsEg23A100GetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        link:
          type: string
          format: uri
        version:
          type: string
        file_name:
          type: string
        test_code:
          type: string
        accession_id:
          type: string
      required:
        - link
        - version
        - file_name
        - test_code
        - accession_id
      title: ReportsEg23A100GetResponsesContentApplicationJsonSchemaDataItems
    reports_Get reports list for a sample id_Response_200:
      type: object
      properties:
        code:
          type: integer
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/ReportsEg23A100GetResponsesContentApplicationJsonSchemaDataItems
        message:
          type: string
      required:
        - code
        - data
        - message
      title: reports_Get reports list for a sample id_Response_200
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

```

## Examples



**Response**

```json
{
  "code": 200,
  "data": [
    {
      "link": "https://link_to_report.com/ABCD001-TEST001-V1.0.pdf",
      "version": "1.0",
      "file_name": "ABCD001-TEST001-V1.0.pdf",
      "test_code": "TEST001",
      "accession_id": "ABCD001"
    },
    {
      "link": "https://link_to_report.com/ABCD001-TEST002-V1.0.pdf",
      "version": "1.0",
      "file_name": "ABCD001-TEST002-V1.0.pdf",
      "test_code": "TEST002",
      "accession_id": "ABCD001"
    },
    {
      "link": "https://link_to_report.com/ABCD002-TEST001-V1.0.pdf",
      "version": "1.0",
      "file_name": "ABCD002-TEST001-V1.0.pdf",
      "test_code": "TEST001",
      "accession_id": "ABCD002"
    }
  ],
  "message": "Report lists fetched successfully"
}
```

**SDK Code**

```python reports_Get reports list for a sample id_example
import requests

url = "https://api.enigmagenomics.com/reports/EG23A100"

headers = {"x-api-key": "<apiKey>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript reports_Get reports list for a sample id_example
const url = 'https://api.enigmagenomics.com/reports/EG23A100';
const options = {method: 'GET', headers: {'x-api-key': '<apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go reports_Get reports list for a sample id_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.enigmagenomics.com/reports/EG23A100"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("x-api-key", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby reports_Get reports list for a sample id_example
require 'uri'
require 'net/http'

url = URI("https://api.enigmagenomics.com/reports/EG23A100")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java reports_Get reports list for a sample id_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.enigmagenomics.com/reports/EG23A100")
  .header("x-api-key", "<apiKey>")
  .asString();
```

```php reports_Get reports list for a sample id_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.enigmagenomics.com/reports/EG23A100', [
  'headers' => [
    'x-api-key' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp reports_Get reports list for a sample id_example
using RestSharp;

var client = new RestClient("https://api.enigmagenomics.com/reports/EG23A100");
var request = new RestRequest(Method.GET);
request.AddHeader("x-api-key", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift reports_Get reports list for a sample id_example
import Foundation

let headers = ["x-api-key": "<apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.enigmagenomics.com/reports/EG23A100")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```