GET
/
exports
/
{job_id}
Get Export Details
curl --request GET \
  --url https://export-service-433968519479.us-central1.run.app/exports/{job_id} \
  --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>"
    }
  },
  "latest_export": {
    "export_id": "<string>",
    "job_id": "<string>",
    "type": "adapter",
    "destination": [
      "gcs"
    ],
    "hf_repo_id": "<string>",
    "status": "running",
    "message": "<string>",
    "artifacts": [
      {
        "type": "adapter",
        "path": "<string>",
        "variant": "raw"
      }
    ],
    "started_at": "2023-11-07T05:31:56Z",
    "finished_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

job_id
string
required

Response

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
latest_export
object | null