> ## Documentation Index
> Fetch the complete documentation index at: https://docs.docyard.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# List Uploads

> List your upload endpoints

# List Uploads

Get all upload endpoints associated with your account.

## Endpoint

```
GET /upload endpoints
```

## Request

```bash theme={null}
curl -X GET https://api.docyard.io/v1/upload endpoints \
  -H "X-API-Key: dk_live_dist_aaaaaaaa" \
  -H "X-API-Secret: dk_secret_dist_bbbbbbbb"
```

## Response

```json theme={null}
{
  "upload endpoints": [
    {
      "upload endpoint_id": "upload endpoint-xyz789",
      "name": "Production Upload",
      "description": "Main upload endpoint",
      "status": "active",
      "api_key_prefix": "dk_live_dist_",
      "created_at": "2026-03-01T09:00:00Z",
      "last_upload_at": "2026-03-15T10:30:00Z",
      "stats": {
        "total_uploads": 15420,
        "total_artifacts": 12350
      }
    },
    {
      "upload endpoint_id": "upload endpoint-dev-001",
      "name": "Development Upload",
      "description": "Testing endpoint",
      "status": "active",
      "api_key_prefix": "dk_test_dist_",
      "created_at": "2026-03-01T09:00:00Z",
      "last_upload_at": "2026-03-14T15:00:00Z",
      "stats": {
        "total_uploads": 450,
        "total_artifacts": 320
      }
    }
  ]
}
```

***

## Related Endpoints

* \[Create Upload]\(/api-reference/upload endpoints/create)
* \[Upload Artifact]\(/api-reference/upload endpoints/upload)
