Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions apify-api/openapi/paths/store/store.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,36 @@ get:
schema:
type: boolean
example: true
- name: responseFormat
in: query
description: |
Controls the shape of the response. Use `full` (default) for the
complete response including image URLs and all fields. Use `agent`
for a reduced field set optimized for LLM consumers, which only
includes `id`, `title`, `name`, `username`, `description`, `notice`,
`badge`, `categories`, and minimal `stats`.
style: form
explode: true
schema:
type: string
enum:
- full
- agent
default: full
example: agent
- name: includeUnrunnableActors
in: query
description: |
By default, search results exclude Actors that are not safe to run
automatically (e.g. Actors from developers who haven't passed KYC, or
full-permission Actors without a large user base). Set to `true` to
bypass this safety filtering and include all Actors in the results.
style: form
explode: true
schema:
type: boolean
default: false
example: true
responses:
"200":
description: ""
Expand Down
Loading