GET
/
exports
Get Exports
curl --request GET \
  --url https://export-service-433968519479.us-central1.run.app/exports \
  --header 'Authorization: Bearer <token>'
[
  {
    "job_id": "<string>",
    "job_name": "<string>",
    "user_id": "<string>",
    "adapter_path": "<string>",
    "base_model_id": "<string>",
    "modality": "text",
    "artifacts": {
      "file": {
        "adapter": "<string>",
        "merged": "<string>",
        "gguf": "<string>"
      },
      "raw": {
        "adapter": "<string>",
        "merged": "<string>"
      },
      "hf": {
        "adapter": "<string>",
        "merged": "<string>",
        "gguf": "<string>"
      }
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

job_id
string
required
job_name
string
required
user_id
string
required
adapter_path
string
required
base_model_id
string
required
modality
enum<string> | null
default:text
Available options:
text,
vision
artifacts
object | null