> For the complete documentation index, see [llms.txt](https://docs.bugsplat.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bugsplat.com/api-reference/api/symbols.md).

# Symbols

API Documentation for the BugSplat Symbols Endpoint

{% hint style="info" %}
This endpoint supports paging and filtering queries. For more information on paging, filtering, and grouping, please visit this [link](/api-reference/paging-filtering-and-grouping.md).
{% endhint %}

Get a list of the individual symbol files that have been uploaded to a database.

This endpoint returns one row per symbol file. To list symbol stores grouped by application and version, along with their crash counts and retired/full dump flags, use the [Versions](/api-reference/api/versions.md) endpoint instead.

{% hint style="warning" %}
Do not confuse this endpoint with the legacy `https://app.bugsplat.com/api/symbols` route. Despite the similar name, `/api/symbols` is a deprecated alias for the [Versions](/api-reference/api/versions.md) endpoint and returns symbol stores grouped by application and version, not individual symbol files.
{% endhint %}

## Get Symbols

<mark style="color:blue;">`GET`</mark> `https://app.bugsplat.com/api/v2/symbols`

Returns the symbol files uploaded to a given database. This query supports paging, filtering, and sorting. All of the property keys on the row objects returned in `rows` can be used as column values for filtering and sorting, e.g., application, version, moduleName, size, etc. Results are sorted by `lastModified` unless a `sortdatafield` is supplied.

#### Query Parameters

| Name     | Type   | Description                                                                                 |
| -------- | ------ | ------------------------------------------------------------------------------------------- |
| database | string | BugSplat database containing the symbol files. Defaults to the current database if omitted. |

{% tabs %}
{% tab title="200 " %}

```json
{
  "database": "fred",
  "pageData": [],
  "rows": [
    {
      "application": "myConsoleCrasher",
      "version": "1.0.0",
      "s3Key": "Fred/myConsoleCrasher-1.0.0/myConsoleCrasher.pdb",
      "lastUploaded": "2025-11-01T00:31:20Z",
      "s3Bucket": "bugsplat-symbols",
      "symbolType": "Windows",
      "guid": "1254DF350E094F4582BB32676F926259",
      "size": 1047851,
      "lastModified": "2025-11-01T00:31:20Z",
      "lastAccessed": "2025-11-02T14:07:55Z",
      "moduleName": "myConsoleCrasher.pdb",
      "downloadFile": "https://app.bugsplat.com/symsrv/download?database=fred&key=Fred%2FmyConsoleCrasher-1.0.0%2FmyConsoleCrasher.pdb&file=myConsoleCrasher.pdb"
    }
  ]
}
```

{% endtab %}
{% endtabs %}

#### Response Fields

| Name         | Type   | Description                                                                                                                                                              |
| ------------ | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| application  | string | Name of the application the symbol file belongs to.                                                                                                                      |
| version      | string | Version of the application the symbol file belongs to.                                                                                                                   |
| moduleName   | string | File name of the symbol file.                                                                                                                                            |
| s3Key        | string | Full key of the symbol file in BugSplat's symbol storage.                                                                                                                |
| s3Bucket     | string | Storage bucket holding the symbol file. May be null for older uploads.                                                                                                   |
| symbolType   | string | Type of symbol file, for example `Windows`. May be null or `Unknown` if the type could not be determined.                                                                |
| guid         | string | Debug identifier used to match the symbol file to a module in a crash report. May be null.                                                                               |
| size         | number | Size of the symbol file in bytes.                                                                                                                                        |
| lastUploaded | string | Date the symbol file was last uploaded. May be null for older uploads.                                                                                                   |
| lastModified | string | Date the symbol file record was last modified. May be null for older uploads.                                                                                            |
| lastAccessed | string | Date the symbol file was last used to symbolicate a crash. Used to determine [symbol expiry](/guides/working-with-symbol-files/managing-symbol-storage.md). May be null. |
| downloadFile | string | URL that can be used to download the symbol file.                                                                                                                        |

### Curl Example

```bash
curl --location 'https://app.bugsplat.com/api/v2/symbols?database=fred' \
--header 'Authorization: Bearer ••••••'
```

Filter to a single application and sort by the largest files first:

```bash
curl --location 'https://app.bugsplat.com/api/v2/symbols?database=fred&sortdatafield=size&sortorder=desc&filterscount=1&filterdatafield0=application&filtercondition0=EQUAL&filtervalue0=myConsoleCrasher' \
--header 'Authorization: Bearer ••••••'
```

{% hint style="info" %}

#### Deprecation Note

This endpoint was previously available at `https://app.bugsplat.com/api/symbolDetails`. That route still works but is deprecated and may be removed in the future. Use `https://app.bugsplat.com/api/v2/symbols` moving forward.

The deprecated route returns the same rows under a capitalized `Database`, `PageData`, and `Rows` envelope, and returns `size` as a string rather than a number.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.bugsplat.com/api-reference/api/symbols.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
