Skip to main content

List Uploads

Get all upload endpoints associated with your account.

Endpoint

GET /upload endpoints

Request

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

{
  "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
      }
    }
  ]
}

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