UTApi
The UploadThing API Helper, for use ON YOUR SERVER. It's basically just a REST API but better.
Please note that external API calls will almost always be slower than querying
your own database. We recommend storing the file data you need in your own
database, either in .onUploadComplete()
or after uploading files using
uploadFiles()
, instead of relying on
the API for your application's core data flow.
Constructor
Prior to v5.7
, the UTApi
was exported as an object called utapi
without
any custom intialization support.
To get started, initialize an instance of UTApi
.
~/server/uploadthing.ts
import { UTApi } from "uploadthing/server";
export const utapi = new UTApi({
// ...options,
});
Options
You can configure the SDK either by passing them as options to the constructor,
or by setting them as environment variables. Environment variables follow the
naming convention of UPLOADTHING_<NAME>
,where <NAME>
is the name of the
config option in constant case, e.g. UPLOADTHING_LOG_LEVEL
. If both are set,
the config object takes precedence.
- Name
- fetch
- Type
- Since 5.7
- Description
Provide a custom fetch function.
FetchEsque
- Name
- token
- Type
- Default: env.UPLOADTHING_TOKENSince 7.0
- Description
Your UploadThing token. You can find this on the UploadThing dashboard.
string
- Name
- logLevel
- Type
- Default: InfoSince 7.0
- Description
Enable more verbose logging.
If using an older version of the SDK, levels might vary.
Error | Warning | Info | Debug | Trace
- Name
- logFormat
- Type
- Default: pretty in development, else jsonSince 7.1
- Description
What format log entries should be in. Read more about the log formats here ↗.
json | logFmt | structured | pretty
- Name
- defaultKeyType
- Type
- Since 6.4
- Description
Set the default key type for file operations. Allows you to set your preferred filter for file keys or custom identifiers without needing to specify it on every call.
'fileKey' | 'customId'
- Name
- apiUrl
- Type
- Since 7.0
- Description
The URL of the UploadThing API. Defaults to
https://api.uploadthing.com
.This option should only be set for self-hosted instances or for testing.
string
- Name
- ingestUrl
- Type
- Since 7.0
- Description
The URL of the UploadThing Ingest API. Will be decoded from the
token
if not specified.This option should only be set for self-hosted instances or for testing.
string
uploadFiles
Upload files directly from your server without using the file router. Useful for server-side file processing, uploading from a server action, and much more.
import { utapi } from "~/server/uploadthing.ts";
async function uploadFiles(formData: FormData) {
"use server";
const files = formData.getAll("files");
const response = await utapi.uploadFiles(files);
// ^? UploadedFileResponse[]
}
function MyForm() {
return (
<form action={uploadFiles}>
<input name="files" type="file" multiple />
<button type="submit">Upload</button>
</form>
);
}
When uploading files using uploadFiles
, the files must be present on your
server. Then presigned URLs are generated on our servers before the files can be
uploaded to the storage provider.
Parameters
- Name
- files
- Type
- RequiredSince 5.3
- Description
The files to upload
// FileEsque is a blob with a name: interface FileEsque extends Blob { name: string customId?: string } // For Node.js > 20, File is a global Class File; // or use UTFile which satisfies the File interface // and allows passing in a customId import { UTFile } from 'uploadthing/server'
MaybeArray<FileEsque>
- Name
- opts.metadata
- Type
- Since 5.3
- Description
Metadata to be added to the uploaded files. This is useful for adding additional information to the files that can be used later.
Json
- Name
- opts.contentDisposition
- Type
- Default: inlineSince 5.3
- Description
The content disposition to set on the storage provider. Content disposition indicates how the file is expected to be displayed in the browser. Read more about content disposition on MDN ↗.
inline | attachment
- Name
- acl
- Type
- Since 6.0
- Description
What ACL should be set on the storage provider. Default value is is configured on your app settings and can only be used if the app allows per-request overrides.
public-read | private
Returns
Returns an Option
of UploadedFileResponse
. If the files
argument is an
array, the returned value will also be an array.
type UploadFileResponse =
| { data: UploadData; error: null }
| { data: null; error: UploadError };
type UploadData = {
key: string;
url: string;
name: string;
size: number;
};
type UploadError = {
code: string;
message: string;
data: any;
};
uploadFilesFromUrl
Have a file hosted somewhere else you want to upload on UploadThing? This is the function you're looking for.
When uploading files from URL, the file is first downloaded on your server, before presigned URLs are created and the file is uploaded to the storage provider.
import { utapi } from "~/server/uploadthing.ts";
const fileUrl = "https://test.com/some.png";
const uploadedFile = await utapi.uploadFilesFromUrl(fileUrl);
// ^? UploadedFileResponse
const fileUrls = ["https://test.com/some.png", "https://test.com/some2.png"];
const uploadedFiles = await utapi.uploadFilesFromUrl(fileUrls);
// ^? UploadedFileResponse[]
Parameters
The first argument are the URLs of the files you want to upload. They may also
be an object with a url
property in case you want to override the name
, or
set a customId
for the files. The function also takes some optional options:
- Name
- urls
- Type
- RequiredSince 5.3
- Description
Metadata to be added to the uploaded files. This is useful for adding additional information to the files that can be used later.
type MaybeURL = string | URL type URLWithOverrides = { url: MaybeURL; name?: string; customId?: string }
MaybeArray<MaybeURL | URLWithOverrides>
- Name
- opts.metadata
- Type
- Since 5.3
- Description
Metadata to be added to the uploaded files. This is useful for adding additional information to the files that can be used later.
Json
- Name
- opts.contentDisposition
- Type
- Default: inlineSince 5.3
- Description
The content disposition to set on the storage provider. Content disposition indicates how the file is expected to be displayed in the browser. Read more about content disposition on MDN ↗.
inline | attachment
- Name
- opts.acl
- Type
- Default: inlineSince 6.0
- Description
What ACL should be set on the storage provider. Default value is is configured on your app settings and can only be used if the app allows per-request overrides.
public-read | private
Returns
Same as uploadFiles
deleteFiles
deleteFiles
takes in a fileKey or an array of fileKeys and deletes them from
the server.
import { utapi } from "~/server/uploadthing.ts";
await utapi.deleteFiles("2e0fdb64-9957-4262-8e45-f372ba903ac8_image.jpg");
await utapi.deleteFiles([
"2e0fdb64-9957-4262-8e45-f372ba903ac8_image.jpg",
"1649353b-04ea-48a2-9db7-31de7f562c8d_image2.jpg",
]);
await deleteFiles("myCustomIdentifier", { keyType: "customId" });
Parameters
Pass in the key(s) you want to delete as the first argument. Additionally, you may pass some options as a second argument:
- Name
- keys
- Type
- Required
- Description
The fileKeys (or customIds) you want to delete
MaybeArray<string>
- Name
- opts.keyType
- Type
- Default: fileKeySince 6.4
- Description
The type of key you are passing in.
fileKey | customId
Returns
object
getFileUrls
getFileUrls
takes in a fileKey or an array of fileKeys and returns the URLs to
access them.
This method is deprecated and will be removed in a future version. Please refer to Accessing Files to learn how to access your files without extra roundtrips for API calls.
import { utapi } from "~/server/uploadthing.ts";
const oneUrl = await utapi.getFileUrls(
"2e0fdb64-9957-4262-8e45-f372ba903ac8_image.jpg",
);
const multipleUrls = await utapi.getFileUrls([
"2e0fdb64-9957-4262-8e45-f372ba903ac8_image.jpg",
"1649353b-04ea-48a2-9db7-31de7f562c8d_image2.jpg",
]);
Parameters
Pass in the key(s) you want to get the URLs for as the first argument. Additionally, you may pass some options as a second argument:
- Name
- keys
- Type
- Required
- Description
The fileKeys (or customIds) you want to get the URLs for
MaybeArray<string>
- Name
- opts.keyType
- Type
- Default: fileKeySince 6.4
- Description
The type of key you are passing in.
fileKey | customId
Returns
object
listFiles
listFiles
returns a paginated list of objects containing file ids and keys for
all files that have been uploaded to the application your API key corresponds
to.
import { utapi } from "~/server/uploadthing.ts";
const files = await utapi.listFiles();
Parameters
- Name
- opts.limit
- Type
- Default: 500Since 6.1
- Description
The maximum number of files to return
number
- Name
- opts.offset
- Type
- Default: 0Since 6.1
- Description
The number of files to skip
number
Returns
object
renameFiles
Rename a file or a list of files. You may specify either a file key or a custom id.
import { utapi } from "~/server/uploadthing.ts";
await utapi.renameFiles({
key: "2e0fdb64-9957-4262-8e45-f372ba903ac8_image.jpg",
newName: "myImage.jpg",
});
await utapi.renameFiles({
customId: "my-identifier",
newName: "myImage.jpg",
});
await utapi.renameFiles([
{
key: "2e0fdb64-9957-4262-8e45-f372ba903ac8_image.jpg",
newName: "myImage.jpg",
},
{
key: "1649353b-04ea-48a2-9db7-31de7f562c8d_image2.jpg",
newName: "myOtherImage.jpg",
},
]);
Returns
object
getSignedURL
Retrieve a signed URL for a private file.
import { utapi } from "~/server/uploadthing.ts";
const fileKey = "2e0fdb64-9957-4262-8e45-f372ba903ac8_image.jpg";
const url = await utapi.getSignedURL(fileKey, {
expiresIn: 60 * 60, // 1 hour
// expiresIn: '1 hour',
// expiresIn: '3d',
// expiresIn: '7 days',
});
The expiresIn
option can only be used if you allow overrides in your app
settings on the UploadThing dashboard.
Parameters
- Name
- key
- Type
- RequiredSince 6.2
- Description
The key of the file to get a signed URL for
string
- Name
- options.expiresIn
- Type
- Since 6.2
- Description
Options for the signed URL. The parsed duration cannot exceed 7 days (604 800).
TimeString
refers to a human-readable string that can be parsed as a number, followed by a unit of time. For example,1s
,1 second
,2m
,2 minutes
,7 days
etc. If no unit is specified, seconds are assumed.
number | TimeString
- Name
- options.keyType
- Type
- Default: fileKeySince 6.2
- Description
The type of key to use for the signed URL.
customId | fileKey
Returns
string
updateACL
Update the ACL of a file or a list of files.
import { utapi } from "~/server/uploadthing.ts";
// Make a single file public
await utapi.updateACL(
"2e0fdb64-9957-4262-8e45-f372ba903ac8_image.jpg",
"public-read",
);
// Make multiple files private
await utapi.updateACL(
[
"2e0fdb64-9957-4262-8e45-f372ba903ac8_image.jpg",
"1649353b-04ea-48a2-9db7-31de7f562c8d_image2.jpg",
],
"private",
);
- Name
- keys
- Type
- RequiredSince 6.8
- Description
The fileKeys (or customIds) you want to update the ACL for
MaybeArray<string>
- Name
- acl
- Type
- RequiredSince 6.8
- Description
The ACL to update to.
public-read | private
- Name
- opts.keyType
- Type
- Default: fileKeySince 6.8
- Description
The type of key you are passing in.
fileKey | customId
Returns
object