
Sustainalytics ESG Ratings Scraper
2 hours trial then $9.00/month - No credit card required now

Sustainalytics ESG Ratings Scraper
2 hours trial then $9.00/month - No credit card required now
Extracts ESG (Environmental, Social, and Governance) ratings data from sustainalytics.com. Fetch paginated company lists or detailed profiles with risk ratings, industry classifications, and more
You can access the Sustainalytics ESG Ratings Scraper 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": "0.0",
5 "x-build-id": "JD8BhDD52mocFrq57"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/njoylab~sustainalytics-esg-ratings-scraper/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-njoylab-sustainalytics-esg-ratings-scraper",
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/njoylab~sustainalytics-esg-ratings-scraper/runs": {
50 "post": {
51 "operationId": "runs-sync-njoylab-sustainalytics-esg-ratings-scraper",
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/njoylab~sustainalytics-esg-ratings-scraper/run-sync": {
93 "post": {
94 "operationId": "run-sync-njoylab-sustainalytics-esg-ratings-scraper",
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 "mode"
135 ],
136 "properties": {
137 "mode": {
138 "title": "Mode",
139 "enum": [
140 "index",
141 "company"
142 ],
143 "type": "string",
144 "description": "Operation mode of the actor",
145 "default": "index"
146 },
147 "page": {
148 "title": "Page",
149 "minimum": 1,
150 "type": "integer",
151 "description": "Page number to scrape",
152 "default": 1
153 },
154 "pageSize": {
155 "title": "Page Size",
156 "minimum": 1,
157 "maximum": 99,
158 "type": "integer",
159 "description": "Number of items per page (max 99)",
160 "default": 10
161 },
162 "industry": {
163 "title": "Industry",
164 "enum": [
165 "",
166 "Aerospace & Defense",
167 "Auto Components",
168 "Automobiles",
169 "Banks",
170 "Building Products",
171 "Chemicals",
172 "Commercial Services",
173 "Construction & Engineering",
174 "Construction Materials",
175 "Consumer Durables",
176 "Consumer Services",
177 "Containers & Packaging",
178 "Diversified Financials",
179 "Diversified Metals",
180 "Electrical Equipment",
181 "Energy Services",
182 "Food Products",
183 "Food Retailers",
184 "Healthcare",
185 "Homebuilders",
186 "Household Products",
187 "Industrial Conglomerates",
188 "Insurance",
189 "Machinery",
190 "Media",
191 "Oil & Gas Producers",
192 "Paper & Forestry",
193 "Pharmaceuticals",
194 "Precious Metals",
195 "Real Estate",
196 "Refiners & Pipelines",
197 "Retailing",
198 "Semiconductors",
199 "Software & Services",
200 "Steel",
201 "Technology Hardware",
202 "Telecommunication Services",
203 "Textiles & Apparel",
204 "Traders & Distributors",
205 "Transportation",
206 "Transportation Infrastructure",
207 "Utilities"
208 ],
209 "type": "string",
210 "description": "Filter by industry (optional)"
211 },
212 "rating": {
213 "title": "Rating",
214 "enum": [
215 "",
216 "0",
217 "1",
218 "2",
219 "3",
220 "4"
221 ],
222 "type": "string",
223 "description": "Filter by risk rating (optional)"
224 },
225 "url": {
226 "title": "URL",
227 "type": "string",
228 "description": "Full URL of the company or just the slug/identifier"
229 }
230 }
231 },
232 "runsResponseSchema": {
233 "type": "object",
234 "properties": {
235 "data": {
236 "type": "object",
237 "properties": {
238 "id": {
239 "type": "string"
240 },
241 "actId": {
242 "type": "string"
243 },
244 "userId": {
245 "type": "string"
246 },
247 "startedAt": {
248 "type": "string",
249 "format": "date-time",
250 "example": "2025-01-08T00:00:00.000Z"
251 },
252 "finishedAt": {
253 "type": "string",
254 "format": "date-time",
255 "example": "2025-01-08T00:00:00.000Z"
256 },
257 "status": {
258 "type": "string",
259 "example": "READY"
260 },
261 "meta": {
262 "type": "object",
263 "properties": {
264 "origin": {
265 "type": "string",
266 "example": "API"
267 },
268 "userAgent": {
269 "type": "string"
270 }
271 }
272 },
273 "stats": {
274 "type": "object",
275 "properties": {
276 "inputBodyLen": {
277 "type": "integer",
278 "example": 2000
279 },
280 "rebootCount": {
281 "type": "integer",
282 "example": 0
283 },
284 "restartCount": {
285 "type": "integer",
286 "example": 0
287 },
288 "resurrectCount": {
289 "type": "integer",
290 "example": 0
291 },
292 "computeUnits": {
293 "type": "integer",
294 "example": 0
295 }
296 }
297 },
298 "options": {
299 "type": "object",
300 "properties": {
301 "build": {
302 "type": "string",
303 "example": "latest"
304 },
305 "timeoutSecs": {
306 "type": "integer",
307 "example": 300
308 },
309 "memoryMbytes": {
310 "type": "integer",
311 "example": 1024
312 },
313 "diskMbytes": {
314 "type": "integer",
315 "example": 2048
316 }
317 }
318 },
319 "buildId": {
320 "type": "string"
321 },
322 "defaultKeyValueStoreId": {
323 "type": "string"
324 },
325 "defaultDatasetId": {
326 "type": "string"
327 },
328 "defaultRequestQueueId": {
329 "type": "string"
330 },
331 "buildNumber": {
332 "type": "string",
333 "example": "1.0.0"
334 },
335 "containerUrl": {
336 "type": "string"
337 },
338 "usage": {
339 "type": "object",
340 "properties": {
341 "ACTOR_COMPUTE_UNITS": {
342 "type": "integer",
343 "example": 0
344 },
345 "DATASET_READS": {
346 "type": "integer",
347 "example": 0
348 },
349 "DATASET_WRITES": {
350 "type": "integer",
351 "example": 0
352 },
353 "KEY_VALUE_STORE_READS": {
354 "type": "integer",
355 "example": 0
356 },
357 "KEY_VALUE_STORE_WRITES": {
358 "type": "integer",
359 "example": 1
360 },
361 "KEY_VALUE_STORE_LISTS": {
362 "type": "integer",
363 "example": 0
364 },
365 "REQUEST_QUEUE_READS": {
366 "type": "integer",
367 "example": 0
368 },
369 "REQUEST_QUEUE_WRITES": {
370 "type": "integer",
371 "example": 0
372 },
373 "DATA_TRANSFER_INTERNAL_GBYTES": {
374 "type": "integer",
375 "example": 0
376 },
377 "DATA_TRANSFER_EXTERNAL_GBYTES": {
378 "type": "integer",
379 "example": 0
380 },
381 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
382 "type": "integer",
383 "example": 0
384 },
385 "PROXY_SERPS": {
386 "type": "integer",
387 "example": 0
388 }
389 }
390 },
391 "usageTotalUsd": {
392 "type": "number",
393 "example": 0.00005
394 },
395 "usageUsd": {
396 "type": "object",
397 "properties": {
398 "ACTOR_COMPUTE_UNITS": {
399 "type": "integer",
400 "example": 0
401 },
402 "DATASET_READS": {
403 "type": "integer",
404 "example": 0
405 },
406 "DATASET_WRITES": {
407 "type": "integer",
408 "example": 0
409 },
410 "KEY_VALUE_STORE_READS": {
411 "type": "integer",
412 "example": 0
413 },
414 "KEY_VALUE_STORE_WRITES": {
415 "type": "number",
416 "example": 0.00005
417 },
418 "KEY_VALUE_STORE_LISTS": {
419 "type": "integer",
420 "example": 0
421 },
422 "REQUEST_QUEUE_READS": {
423 "type": "integer",
424 "example": 0
425 },
426 "REQUEST_QUEUE_WRITES": {
427 "type": "integer",
428 "example": 0
429 },
430 "DATA_TRANSFER_INTERNAL_GBYTES": {
431 "type": "integer",
432 "example": 0
433 },
434 "DATA_TRANSFER_EXTERNAL_GBYTES": {
435 "type": "integer",
436 "example": 0
437 },
438 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
439 "type": "integer",
440 "example": 0
441 },
442 "PROXY_SERPS": {
443 "type": "integer",
444 "example": 0
445 }
446 }
447 }
448 }
449 }
450 }
451 }
452 }
453 }
454}
Sustainalytics ESG Ratings Scraper 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 Sustainalytics ESG Ratings Scraper 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:
Actor Metrics
1 monthly user
-
1 bookmark
Created in Mar 2025
Modified 2 hours ago