
Page Printer
Pricing
Pay per usage

Page Printer
Performs screenshots or print web pages in PDF format.
0.0 (0)
Pricing
Pay per usage
3
Monthly users
5
Runs succeeded
>99%
Last modified
25 days ago
You can access the Page Printer programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1{
2 "openapi": "3.0.1",
3 "info": {
4 "version": "0.0",
5 "x-build-id": "cP7nZcTzDnJDZxKbJ"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/marco.gullo~page-printer/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-marco.gullo-page-printer",
16 "x-openai-isConsequential": false,
17 "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18 "tags": [
19 "Run Actor"
20 ],
21 "requestBody": {
22 "required": true,
23 "content": {
24 "application/json": {
25 "schema": {
26 "$ref": "#/components/schemas/inputSchema"
27 }
28 }
29 }
30 },
31 "parameters": [
32 {
33 "name": "token",
34 "in": "query",
35 "required": true,
36 "schema": {
37 "type": "string"
38 },
39 "description": "Enter your Apify token here"
40 }
41 ],
42 "responses": {
43 "200": {
44 "description": "OK"
45 }
46 }
47 }
48 },
49 "/acts/marco.gullo~page-printer/runs": {
50 "post": {
51 "operationId": "runs-sync-marco.gullo-page-printer",
52 "x-openai-isConsequential": false,
53 "summary": "Executes an Actor and returns information about the initiated run in response.",
54 "tags": [
55 "Run Actor"
56 ],
57 "requestBody": {
58 "required": true,
59 "content": {
60 "application/json": {
61 "schema": {
62 "$ref": "#/components/schemas/inputSchema"
63 }
64 }
65 }
66 },
67 "parameters": [
68 {
69 "name": "token",
70 "in": "query",
71 "required": true,
72 "schema": {
73 "type": "string"
74 },
75 "description": "Enter your Apify token here"
76 }
77 ],
78 "responses": {
79 "200": {
80 "description": "OK",
81 "content": {
82 "application/json": {
83 "schema": {
84 "$ref": "#/components/schemas/runsResponseSchema"
85 }
86 }
87 }
88 }
89 }
90 }
91 },
92 "/acts/marco.gullo~page-printer/run-sync": {
93 "post": {
94 "operationId": "run-sync-marco.gullo-page-printer",
95 "x-openai-isConsequential": false,
96 "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97 "tags": [
98 "Run Actor"
99 ],
100 "requestBody": {
101 "required": true,
102 "content": {
103 "application/json": {
104 "schema": {
105 "$ref": "#/components/schemas/inputSchema"
106 }
107 }
108 }
109 },
110 "parameters": [
111 {
112 "name": "token",
113 "in": "query",
114 "required": true,
115 "schema": {
116 "type": "string"
117 },
118 "description": "Enter your Apify token here"
119 }
120 ],
121 "responses": {
122 "200": {
123 "description": "OK"
124 }
125 }
126 }
127 }
128 },
129 "components": {
130 "schemas": {
131 "inputSchema": {
132 "type": "object",
133 "required": [
134 "startUrls",
135 "method"
136 ],
137 "properties": {
138 "startUrls": {
139 "title": "Start URLs",
140 "type": "array",
141 "description": "URLs to start with.",
142 "items": {
143 "type": "object",
144 "required": [
145 "url"
146 ],
147 "properties": {
148 "url": {
149 "type": "string",
150 "title": "URL of a web page",
151 "format": "uri"
152 }
153 }
154 }
155 },
156 "method": {
157 "title": "Method",
158 "enum": [
159 "screenshot",
160 "pdf"
161 ],
162 "type": "string",
163 "description": "Method for generating the page print.",
164 "default": "screenshot"
165 },
166 "width": {
167 "title": "Page width",
168 "minimum": 0,
169 "type": "integer",
170 "description": "The page width to apply: affects the screenshot.",
171 "default": 1280
172 },
173 "height": {
174 "title": "Page height",
175 "minimum": 0,
176 "type": "integer",
177 "description": "The page height to apply: can affect the screenshot.",
178 "default": 800
179 },
180 "loadCookiesExtension": {
181 "title": "Load Cookies extension",
182 "type": "boolean",
183 "description": "Hide cookies using browser extension \"I don't care about cookies\", version 3.5.1"
184 },
185 "loadPopupsExtension": {
186 "title": "Load Popups extension",
187 "type": "boolean",
188 "description": "Hide popups using browser extension \"PopUpOFF\", version 2.1.3"
189 },
190 "waitForLoadState": {
191 "title": "Wait for load state",
192 "enum": [
193 "load",
194 "domcontentloaded",
195 "networkidle"
196 ],
197 "type": "string",
198 "description": "The state to load for before processing the page."
199 },
200 "preFunction": {
201 "title": "Pre-function",
202 "type": "string",
203 "description": "Function to evaluate before printing the page. Can accept Playwright's 'page' object as input."
204 },
205 "alwaysScreenshot": {
206 "title": "Always take a screenshot",
207 "type": "boolean",
208 "description": "Try to take a screenshot even if the pre-function crashed"
209 },
210 "screenshotFormat": {
211 "title": "Screenshot format",
212 "enum": [
213 "jpeg",
214 "png"
215 ],
216 "type": "string",
217 "description": "Which image format to use for the screenshot.",
218 "default": "png"
219 },
220 "screenshotQuality": {
221 "title": "Screenshot quality",
222 "minimum": 0,
223 "maximum": 100,
224 "type": "integer",
225 "description": "The JPEG quality for the screenshot, which is always stored.",
226 "default": 100
227 },
228 "fullPageScreenshot": {
229 "title": "Full page screenshot",
230 "type": "boolean",
231 "description": "Take a full page screenshot, increasing the LLM cost in \"screenshot\" mode. Can be turned off if all the information is in the viewport. Sending just the viewport, can also increase the LLM's success rate.",
232 "default": true
233 },
234 "pdfMedia": {
235 "title": "Media",
236 "enum": [
237 "print",
238 "screen"
239 ],
240 "type": "string",
241 "description": "Media for printing PDF. See: https://playwright.dev/docs/api/class-page#page-pdf.",
242 "default": "print"
243 },
244 "maxRequestRetries": {
245 "title": "Max request retries",
246 "type": "integer",
247 "description": "Max number of retries before declaring a screenshot job failed."
248 },
249 "waitForLoadStateTimeout": {
250 "title": "wait For Load State Timeout (milliseconds)",
251 "type": "integer",
252 "description": " timeout for waitForLoadState event, in milliseconds"
253 },
254 "requestHandlerTimeoutSecs": {
255 "title": "request Handler Timeout Secs",
256 "type": "integer",
257 "description": "Timeout in which the requestHandler function needs to finish, in seconds."
258 },
259 "navigationTimeoutSecs": {
260 "title": "Navigation Timeout Secs",
261 "type": "integer",
262 "description": "Timeout in which page navigation needs to finish, in seconds."
263 },
264 "proxyOptions": {
265 "title": "Proxy configuration",
266 "type": "object",
267 "description": "Select proxies to be used by your crawler."
268 }
269 }
270 },
271 "runsResponseSchema": {
272 "type": "object",
273 "properties": {
274 "data": {
275 "type": "object",
276 "properties": {
277 "id": {
278 "type": "string"
279 },
280 "actId": {
281 "type": "string"
282 },
283 "userId": {
284 "type": "string"
285 },
286 "startedAt": {
287 "type": "string",
288 "format": "date-time",
289 "example": "2025-01-08T00:00:00.000Z"
290 },
291 "finishedAt": {
292 "type": "string",
293 "format": "date-time",
294 "example": "2025-01-08T00:00:00.000Z"
295 },
296 "status": {
297 "type": "string",
298 "example": "READY"
299 },
300 "meta": {
301 "type": "object",
302 "properties": {
303 "origin": {
304 "type": "string",
305 "example": "API"
306 },
307 "userAgent": {
308 "type": "string"
309 }
310 }
311 },
312 "stats": {
313 "type": "object",
314 "properties": {
315 "inputBodyLen": {
316 "type": "integer",
317 "example": 2000
318 },
319 "rebootCount": {
320 "type": "integer",
321 "example": 0
322 },
323 "restartCount": {
324 "type": "integer",
325 "example": 0
326 },
327 "resurrectCount": {
328 "type": "integer",
329 "example": 0
330 },
331 "computeUnits": {
332 "type": "integer",
333 "example": 0
334 }
335 }
336 },
337 "options": {
338 "type": "object",
339 "properties": {
340 "build": {
341 "type": "string",
342 "example": "latest"
343 },
344 "timeoutSecs": {
345 "type": "integer",
346 "example": 300
347 },
348 "memoryMbytes": {
349 "type": "integer",
350 "example": 1024
351 },
352 "diskMbytes": {
353 "type": "integer",
354 "example": 2048
355 }
356 }
357 },
358 "buildId": {
359 "type": "string"
360 },
361 "defaultKeyValueStoreId": {
362 "type": "string"
363 },
364 "defaultDatasetId": {
365 "type": "string"
366 },
367 "defaultRequestQueueId": {
368 "type": "string"
369 },
370 "buildNumber": {
371 "type": "string",
372 "example": "1.0.0"
373 },
374 "containerUrl": {
375 "type": "string"
376 },
377 "usage": {
378 "type": "object",
379 "properties": {
380 "ACTOR_COMPUTE_UNITS": {
381 "type": "integer",
382 "example": 0
383 },
384 "DATASET_READS": {
385 "type": "integer",
386 "example": 0
387 },
388 "DATASET_WRITES": {
389 "type": "integer",
390 "example": 0
391 },
392 "KEY_VALUE_STORE_READS": {
393 "type": "integer",
394 "example": 0
395 },
396 "KEY_VALUE_STORE_WRITES": {
397 "type": "integer",
398 "example": 1
399 },
400 "KEY_VALUE_STORE_LISTS": {
401 "type": "integer",
402 "example": 0
403 },
404 "REQUEST_QUEUE_READS": {
405 "type": "integer",
406 "example": 0
407 },
408 "REQUEST_QUEUE_WRITES": {
409 "type": "integer",
410 "example": 0
411 },
412 "DATA_TRANSFER_INTERNAL_GBYTES": {
413 "type": "integer",
414 "example": 0
415 },
416 "DATA_TRANSFER_EXTERNAL_GBYTES": {
417 "type": "integer",
418 "example": 0
419 },
420 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
421 "type": "integer",
422 "example": 0
423 },
424 "PROXY_SERPS": {
425 "type": "integer",
426 "example": 0
427 }
428 }
429 },
430 "usageTotalUsd": {
431 "type": "number",
432 "example": 0.00005
433 },
434 "usageUsd": {
435 "type": "object",
436 "properties": {
437 "ACTOR_COMPUTE_UNITS": {
438 "type": "integer",
439 "example": 0
440 },
441 "DATASET_READS": {
442 "type": "integer",
443 "example": 0
444 },
445 "DATASET_WRITES": {
446 "type": "integer",
447 "example": 0
448 },
449 "KEY_VALUE_STORE_READS": {
450 "type": "integer",
451 "example": 0
452 },
453 "KEY_VALUE_STORE_WRITES": {
454 "type": "number",
455 "example": 0.00005
456 },
457 "KEY_VALUE_STORE_LISTS": {
458 "type": "integer",
459 "example": 0
460 },
461 "REQUEST_QUEUE_READS": {
462 "type": "integer",
463 "example": 0
464 },
465 "REQUEST_QUEUE_WRITES": {
466 "type": "integer",
467 "example": 0
468 },
469 "DATA_TRANSFER_INTERNAL_GBYTES": {
470 "type": "integer",
471 "example": 0
472 },
473 "DATA_TRANSFER_EXTERNAL_GBYTES": {
474 "type": "integer",
475 "example": 0
476 },
477 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
478 "type": "integer",
479 "example": 0
480 },
481 "PROXY_SERPS": {
482 "type": "integer",
483 "example": 0
484 }
485 }
486 }
487 }
488 }
489 }
490 }
491 }
492 }
493}
Page Printer OpenAPI definition
OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for Page Printer from the options below:
If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients:
Pricing
Pricing model
Pay per usageThis Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage.