Skip to main content
Browse and search the Runpod Hub marketplace to discover deployable repos. You can list popular repos, search by name, and get details for specific repos. Use Hub repo IDs with runpodctl serverless create --hub-id to deploy endpoints directly from the Hub.
runpodctl hub <subcommand> [flags]

Subcommands

List repos

List repos from the Hub marketplace. By default, shows the top 10 repos ordered by stars.
# List top repos by stars
runpodctl hub list

# List only Serverless repos
runpodctl hub list --type SERVERLESS

# List only Pod repos
runpodctl hub list --type POD

# Filter by category
runpodctl hub list --category ai --limit 20

# Order by deployment count
runpodctl hub list --order-by deploys

# Filter by repo owner
runpodctl hub list --owner runpod

List flags

--type
string
Filter by deployment type (POD or SERVERLESS).
--category
string
Filter by category.
--owner
string
Filter by repo owner.
--order-by
string
default:"stars"
Sort results by field: createdAt, deploys, releasedAt, stars, updatedAt, or views.
--order-dir
string
default:"desc"
Sort direction: asc or desc.
--limit
int
default:"10"
Maximum number of results to return.
--offset
int
Number of results to skip for pagination.

Search repos

Search for repos in the Hub by name:
# Search for vLLM repos
runpodctl hub search vllm

# Search Serverless repos only
runpodctl hub search whisper --type SERVERLESS

# Limit search results
runpodctl hub search stable-diffusion --limit 5

Search flags

--type
string
Filter by deployment type (POD or SERVERLESS).
--category
string
Filter by category.
--owner
string
Filter by repo owner.
--order-by
string
default:"stars"
Sort results by field: createdAt, deploys, releasedAt, stars, updatedAt, or views.
--order-dir
string
default:"desc"
Sort direction: asc or desc.
--limit
int
default:"10"
Maximum number of results to return.
--offset
int
Number of results to skip for pagination.

Get repo details

Get detailed information about a specific Hub repo by its ID or owner/name:
# Get by listing ID
runpodctl hub get cm8h09d9n000008jvh2rqdsmb

# Get by owner/name
runpodctl hub get runpod-workers/worker-vllm

Deploy from the Hub

After finding a repo you want to deploy, use its listing ID with serverless create:
# Find a repo
runpodctl hub search vllm

# Deploy it
runpodctl serverless create --hub-id cm8h09d9n000008jvh2rqdsmb --name "my-vllm"
GPU IDs and container disk size are automatically pulled from the Hub release config. You can override the GPU type with --gpu-id.