Skip to content

Commit cf67853

Browse files
committed
Fixes from review
1 parent fab0e25 commit cf67853

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

sources/platform/actors/development/quick_start/start_web_ide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Log in to [Apify Console](https://console.apify.com), navigate to [**My Actors**
2727

2828
![Create Actor](./images/create-actor.png)
2929

30-
You'll see Actor development templates for `JavaScript`, `TypeScript`, and `Python`. These templates provide boilerplate code and a preconfigured environment. For this guide, we'll start with the simplest one.
30+
You'll see Actor development templates for `JavaScript`, `TypeScript`, and `Python`. These templates provide boilerplate code and a preconfigured environment.
3131

32-
#### A simple JavaScript example
32+
#### JavaScript example
3333

3434
Choose the **Start with JavaScript** template. This template is a great starting point for web scraping as it extracts data from a single website using basic HTTP requests.
3535

@@ -72,7 +72,7 @@ The Actor takes a `url` as input and then:
7272
1. Extracts all headings (H1 - H6).
7373
1. Stores the extracted data in the Actor's default [dataset](/platform/storage/dataset).
7474

75-
After choosing the template, your Actor will be automatically named and you'll be redirected to its page. From here, you can move on to **[Step 3: Build the Actor](#step-3-build-the-actor)**, as this simple template doesn't require any further exploration of the code.
75+
After choosing the template, your Actor will be automatically named and you'll be redirected to its page. From here, you can move on to **[Step 3: Build the Actor](#step-3-build-the-actor)**, as this template doesn't require any further exploration of the code.
7676

7777
#### More advanced templates
7878

sources/platform/actors/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ When you deploy your code to the Apify platform, it becomes an **Actor**. An Act
1919

2020
Actors can perform anything from a basic action, such as filling out a web form or sending an email, to complex operations like crawling an entire website and removing duplicates from a large dataset. Though most Actors on the Apify platform are used for web scraping and automation, they are not limited to these tasks. An Actor can be any program running in a Docker container.
2121

22-
Once an Actor has been pushed to the Apify platform, it can be shared with the world through the [Apify Store](https://apify.com/store) and even monetized.
22+
Once an Actor has been pushed to the Apify platform, it can be shared with the world through [Apify Store](https://apify.com/store) and even monetized.
2323

2424
<details>
2525
<summary>Try an Actor</summary>
@@ -77,4 +77,4 @@ For more context, read the [Actor whitepaper](https://whitepaper.actor/).
7777

7878
## Public and private Actors
7979

80-
Actors can be public or private. Private Actors are only accessible to you and your team. Public Actors are available to everyone in the [Apify Store](https://apify.com/store). You can make them free to use, or you can [charge for them](https://blog.apify.com/make-regular-passive-income-developing-web-automation-actors-b0392278d085/).
80+
Actors can be public or private. Private Actors are only accessible to you and your team. Public Actors are available to everyone in [Apify Store](https://apify.com/store). You can make them free to use, or you can [charge for them](https://blog.apify.com/make-regular-passive-income-developing-web-automation-actors-b0392278d085/).

sources/platform/actors/running/input_and_output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ You can also use [API](https://docs.apify.com/api/v2) to retrieve the output. To
5656

5757
## Example
5858

59-
Here is a simple Actor that demonstrates how to access input and produce output. The Actor takes two numbers as input, adds them together, and pushes the result to its default dataset.
59+
Here is an Actor that demonstrates how to access input and produce output. The Actor takes two numbers as input, adds them together, and pushes the result to its default dataset.
6060

6161
### Input
6262

63-
To create a user interface for this input in the Apify Console, you would define the following `INPUT_SCHEMA.json`:
63+
To create a user interface for this input in Apify Console, you would define the following `INPUT_SCHEMA.json`:
6464

6565
```json title="INPUT_SCHEMA.json"
6666
{

sources/platform/integrations/programming/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ slug: /integrations/api
1212

1313
All aspects of the Apify platform can be controlled via a REST API, which is described in detail in the [**API Reference**](/api/v2).
1414

15-
If you want to use the Apify API from JavaScript in Node.js or Python, we strongly recommend using one of our official API clients. They implement best practices such as exponential backoff and rate limiting, making your integrations more robust.
15+
If you want to use the Apify API from JavaScript in Node.js or Python, we strongly recommend using one of our official API clients. They implement best practices such as exponential backoff and rate limiting.
1616

17-
<a href="/integrations/api/clients" className="cta-button">View API clients guide</a>
17+
[Check out API Clients guide](/platform/integrations/api/clients)
1818

1919
You are not required to use these packages—the REST API works with any HTTP client—but the official API clients are the recommended approach for most use cases.
2020

sources/platform/integrations/programming/api_clients.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ import TabItem from '@theme/TabItem';
1313

1414
---
1515

16-
While you can interact with the Apify API through raw HTTP requests, our official clients for JavaScript and Python provide a much simpler way to get started.
17-
1816
## Installation
1917

2018
You can install the client libraries from their respective package managers.
@@ -71,11 +69,11 @@ Avoid hardcoding your `API token`. Use an environment variable instead, especial
7169

7270
## Usage examples
7371

74-
The following examples demonstrate how to perform common actions using the API clients.
72+
The following examples show how to perform common actions using the API clients.
7573

7674
### Running an Actor and getting results
7775

78-
This example runs an Actor and retrieves its results. We will use a simple "number adder" Actor that takes two numbers as input and outputs their sum.
76+
This example runs an Actor and retrieves its results. We will use an Actor that takes two numbers as input and outputs their sum.
7977

8078
First, get a client for the specific Actor, then run it using the `.call()` method.
8179

0 commit comments

Comments
 (0)