ServerOps.ggbeta
API ReferenceMedia

Get a file

Retrieve metadata for a single file by ID. Returns 404 if the file belongs to a different project.

Requires media:read scope.

GET
/media/{id}

Authorization

bearerAuth media:read
AuthorizationBearer <token>

API token from your dashboard.

Format: so_live_... (production) or so_test_... (test mode).

Tokens carry one or more scopes. Request only the scopes your integration needs:

ScopeGrants
media:readList and retrieve files
media:writeUpload and delete files
logs:readRead log entries
logs:writeIngest log entries
cases:readRead cases
cases:writeCreate and update cases
apps:readRead apps
apps:writeSubmit apps
usage:readRead quota usage
members:readList organisation members
members:writeInvite and remove members
billing:readRead billing and subscription info
tokens:writeCreate and revoke API tokens

In: header

Scope: media:read

Path Parameters

id*string

File ID (ULID with f_ prefix)

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/media/f_01HZXXXXXXXXXXXXXXXXXXXXX"
{
  "id": "f_01HZXXXXXXXXXXXXXXXXXXXXX",
  "url": "https://media.serverops.gg/p_01HZ.../screenshot.png",
  "key": "string",
  "size": 2097152,
  "content_type": "image/png",
  "sha256": "string",
  "original_name": "screenshot.png",
  "tags": [
    "string"
  ],
  "folder": "string",
  "abuse_status": "clean",
  "visibility": "public",
  "storage_class": "standard",
  "created_at": "2019-08-24T14:15:22Z",
  "updated_at": "2019-08-24T14:15:22Z"
}
{
  "error": {
    "code": "unauthorized",
    "message": "missing or invalid authorization token"
  }
}
{
  "error": {
    "code": "not_found",
    "message": "file not found"
  }
}
{
  "error": {
    "code": "internal",
    "message": "an unexpected error occurred"
  }
}