Models
Learn about the diverse set of models powering our API. Our offerings include one distinct model.
Flagship ModelsCopied!
bump-1.0
Fast, cost-effective model for quick outputs.
Model ID Aliases and SnapshotsCopied!
In the tables below, you will see the model IDs (aliases) that you can use in REST API requests. These aliases point to specific dated snapshots. When you use an alias in an API request, the response will include the actual model ID used.
Alias |
Points to |
---|---|
bump-1.0 |
bump-1.0-2025-04-19 |
While future releases may introduce additional models and aliases, please ensure that all API requests use bump-1.0 at this time.
API Request Using a Model AliasCopied!
Below is an example of how to generate timestamps using the supported model alias bump-1.0. In this request, you specify bump-1.0 as the model, and the API response will include the actual model ID (e.g., bump-1.0-2025-04-19).
// Set up your API key and endpoint
const apiKey = "YOUR_BUMPUPS_API_KEY";
const url = "https://api.bumpups.com/general/timestamps";
// Prepare the request payload using the bump-1.0 alias
const payload = {
url: "https://www.youtube.com/watch?v=wv6TaPbnBp4",
model: "bump-1.0",
language: "en",
timestamps_style: "long"
};
// Make the API request
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Api-Key": apiKey
},
body: JSON.stringify(payload)
});
const data = await response.json();
console.log(data);
In this example, although the request specifies the bump-1.0 alias, the API response will contain the actual model ID used, which is bump-1.0-2025-04-19.