action botify_get_urls { label: "Executes a query and returns a paginated response" description: "Executes a query and returns a paginated response" provider: botify method: POST path: "/analyses/{username}/{project_slug}/{analysis_slug}/urls" encoding: json input: { type: "object" properties: { area: { type: "string" enum: ["current", "disappeared", "new", "search_engines_orphans"] } fields: { type: "array" items: { type: "string" } } filters: { type: "object" } page: { type: "integer" format: "int32" } size: { type: "integer" format: "int32" } sort: { type: "array" items: { type: "object" } } } additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" } next: { type: "string" } page: { type: "integer" } previous: { type: "string" } results: { type: "array" items: { type: "object" properties: {} } } size: { type: "integer" } } } }