---
title: "List store agents"
method: GET
path: "/api/store/agents"
tags: ["v2", "store", "public"]
---

# List store agents

`GET /api/store/agents`

Get a paginated list of agents from the marketplace,
with optional filtering and sorting.

Used for:
- Home Page Featured Agents
- Home Page Top Agents
- Search Results
- Agent Details - Other Agents By Creator
- Agent Details - Similar Agents
- Creator Details - Agents By Creator

## Query parameters

- `featured` boolean — Filter to only show featured agents
- `creator` string, nullable — Filter agents by creator username
- `category` string, nullable — Filter agents by category
- `search_query` string, nullable — Literal + semantic search on names and descriptions
- `sorted_by` 'rating' | 'runs' | 'name' | 'updated_at'
- `page` integer
- `page_size` integer

## Response `200`

Successful Response

- StoreAgentsResponse
  - `agents` StoreAgent[], required
    - `slug` string, required
    - `agent_name` string, required
    - `agent_image` string, required
    - `creator` string, required
    - `creator_avatar` string, required
    - `sub_heading` string, required
    - `description` string, required
    - `runs` integer, required
    - `rating` number, required
    - `agent_graph_id` string, required
  - `pagination` Pagination, required
    - `total_items` integer, required — Total number of items.
    - `total_pages` integer, required — Total number of pages.
    - `current_page` integer, required — Current_page page number.
    - `page_size` integer, required — Number of items per page.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/significant-gravitas/apis/autogpt-agent-server.md) · [All operations](https://skmtc.net/significant-gravitas/apis/autogpt-agent-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/significant-gravitas/autogpt-agent-server/revisions/382041c7ecb2/schema)
