Coronavirus stats in Czech Republic
This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?
See alternative ActorsCoronavirus stats in Czech Republic
Gets all the charts statistics (actual number of examined and infected people) by COVID-19 in the Czech Republic from https://onemocneni-aktualne.mzcr.cz/covid-19.
You can access the Coronavirus stats in Czech Republic programmatically from your own applications by using the Apify API. You can 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": "v1.0"
5 },
6 "servers": [
7 {
8 "url": "https://api.apify.com/v2"
9 }
10 ],
11 "paths": {
12 "/acts/petrpatek~covid-cz/run-sync-get-dataset-items": {
13 "post": {
14 "operationId": "run-sync-get-dataset-items-petrpatek-covid-cz",
15 "x-openai-isConsequential": false,
16 "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
17 "tags": [
18 "Run Actor"
19 ],
20 "requestBody": {
21 "required": true,
22 "content": {
23 "application/json": {
24 "schema": {
25 "$ref": "#/components/schemas/inputSchema"
26 }
27 }
28 }
29 },
30 "parameters": [
31 {
32 "name": "token",
33 "in": "query",
34 "required": true,
35 "schema": {
36 "type": "string"
37 },
38 "description": "Enter your Apify token here"
39 }
40 ],
41 "responses": {
42 "200": {
43 "description": "OK"
44 }
45 }
46 }
47 },
48 "/acts/petrpatek~covid-cz/runs": {
49 "post": {
50 "operationId": "runs-sync-petrpatek-covid-cz",
51 "x-openai-isConsequential": false,
52 "summary": "Executes an Actor and returns information about the initiated run in response.",
53 "tags": [
54 "Run Actor"
55 ],
56 "requestBody": {
57 "required": true,
58 "content": {
59 "application/json": {
60 "schema": {
61 "$ref": "#/components/schemas/inputSchema"
62 }
63 }
64 }
65 },
66 "parameters": [
67 {
68 "name": "token",
69 "in": "query",
70 "required": true,
71 "schema": {
72 "type": "string"
73 },
74 "description": "Enter your Apify token here"
75 }
76 ],
77 "responses": {
78 "200": {
79 "description": "OK",
80 "content": {
81 "application/json": {
82 "schema": {
83 "$ref": "#/components/schemas/runsResponseSchema"
84 }
85 }
86 }
87 }
88 }
89 }
90 },
91 "/acts/petrpatek~covid-cz/run-sync": {
92 "post": {
93 "operationId": "run-sync-petrpatek-covid-cz",
94 "x-openai-isConsequential": false,
95 "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
96 "tags": [
97 "Run Actor"
98 ],
99 "requestBody": {
100 "required": true,
101 "content": {
102 "application/json": {
103 "schema": {
104 "$ref": "#/components/schemas/inputSchema"
105 }
106 }
107 }
108 },
109 "parameters": [
110 {
111 "name": "token",
112 "in": "query",
113 "required": true,
114 "schema": {
115 "type": "string"
116 },
117 "description": "Enter your Apify token here"
118 }
119 ],
120 "responses": {
121 "200": {
122 "description": "OK"
123 }
124 }
125 }
126 }
127 },
128 "components": {
129 "schemas": {
130 "inputSchema": {
131 "type": "object",
132 "properties": {}
133 },
134 "runsResponseSchema": {
135 "type": "object",
136 "properties": {
137 "data": {
138 "type": "object",
139 "properties": {
140 "id": {
141 "type": "string"
142 },
143 "actId": {
144 "type": "string"
145 },
146 "userId": {
147 "type": "string"
148 },
149 "startedAt": {
150 "type": "string",
151 "format": "date-time",
152 "example": "2025-01-08T00:00:00.000Z"
153 },
154 "finishedAt": {
155 "type": "string",
156 "format": "date-time",
157 "example": "2025-01-08T00:00:00.000Z"
158 },
159 "status": {
160 "type": "string",
161 "example": "READY"
162 },
163 "meta": {
164 "type": "object",
165 "properties": {
166 "origin": {
167 "type": "string",
168 "example": "API"
169 },
170 "userAgent": {
171 "type": "string"
172 }
173 }
174 },
175 "stats": {
176 "type": "object",
177 "properties": {
178 "inputBodyLen": {
179 "type": "integer",
180 "example": 2000
181 },
182 "rebootCount": {
183 "type": "integer",
184 "example": 0
185 },
186 "restartCount": {
187 "type": "integer",
188 "example": 0
189 },
190 "resurrectCount": {
191 "type": "integer",
192 "example": 0
193 },
194 "computeUnits": {
195 "type": "integer",
196 "example": 0
197 }
198 }
199 },
200 "options": {
201 "type": "object",
202 "properties": {
203 "build": {
204 "type": "string",
205 "example": "latest"
206 },
207 "timeoutSecs": {
208 "type": "integer",
209 "example": 300
210 },
211 "memoryMbytes": {
212 "type": "integer",
213 "example": 1024
214 },
215 "diskMbytes": {
216 "type": "integer",
217 "example": 2048
218 }
219 }
220 },
221 "buildId": {
222 "type": "string"
223 },
224 "defaultKeyValueStoreId": {
225 "type": "string"
226 },
227 "defaultDatasetId": {
228 "type": "string"
229 },
230 "defaultRequestQueueId": {
231 "type": "string"
232 },
233 "buildNumber": {
234 "type": "string",
235 "example": "1.0.0"
236 },
237 "containerUrl": {
238 "type": "string"
239 },
240 "usage": {
241 "type": "object",
242 "properties": {
243 "ACTOR_COMPUTE_UNITS": {
244 "type": "integer",
245 "example": 0
246 },
247 "DATASET_READS": {
248 "type": "integer",
249 "example": 0
250 },
251 "DATASET_WRITES": {
252 "type": "integer",
253 "example": 0
254 },
255 "KEY_VALUE_STORE_READS": {
256 "type": "integer",
257 "example": 0
258 },
259 "KEY_VALUE_STORE_WRITES": {
260 "type": "integer",
261 "example": 1
262 },
263 "KEY_VALUE_STORE_LISTS": {
264 "type": "integer",
265 "example": 0
266 },
267 "REQUEST_QUEUE_READS": {
268 "type": "integer",
269 "example": 0
270 },
271 "REQUEST_QUEUE_WRITES": {
272 "type": "integer",
273 "example": 0
274 },
275 "DATA_TRANSFER_INTERNAL_GBYTES": {
276 "type": "integer",
277 "example": 0
278 },
279 "DATA_TRANSFER_EXTERNAL_GBYTES": {
280 "type": "integer",
281 "example": 0
282 },
283 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
284 "type": "integer",
285 "example": 0
286 },
287 "PROXY_SERPS": {
288 "type": "integer",
289 "example": 0
290 }
291 }
292 },
293 "usageTotalUsd": {
294 "type": "number",
295 "example": 0.00005
296 },
297 "usageUsd": {
298 "type": "object",
299 "properties": {
300 "ACTOR_COMPUTE_UNITS": {
301 "type": "integer",
302 "example": 0
303 },
304 "DATASET_READS": {
305 "type": "integer",
306 "example": 0
307 },
308 "DATASET_WRITES": {
309 "type": "integer",
310 "example": 0
311 },
312 "KEY_VALUE_STORE_READS": {
313 "type": "integer",
314 "example": 0
315 },
316 "KEY_VALUE_STORE_WRITES": {
317 "type": "number",
318 "example": 0.00005
319 },
320 "KEY_VALUE_STORE_LISTS": {
321 "type": "integer",
322 "example": 0
323 },
324 "REQUEST_QUEUE_READS": {
325 "type": "integer",
326 "example": 0
327 },
328 "REQUEST_QUEUE_WRITES": {
329 "type": "integer",
330 "example": 0
331 },
332 "DATA_TRANSFER_INTERNAL_GBYTES": {
333 "type": "integer",
334 "example": 0
335 },
336 "DATA_TRANSFER_EXTERNAL_GBYTES": {
337 "type": "integer",
338 "example": 0
339 },
340 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
341 "type": "integer",
342 "example": 0
343 },
344 "PROXY_SERPS": {
345 "type": "integer",
346 "example": 0
347 }
348 }
349 }
350 }
351 }
352 }
353 }
354 }
355 }
356}
Coronavirus stats in Czech Republic 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.
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: