diff --git a/apify/skills/apify-sdk-integration/SKILL.md b/apify/skills/apify-sdk-integration/SKILL.md index b82f42d..cd56062 100644 --- a/apify/skills/apify-sdk-integration/SKILL.md +++ b/apify/skills/apify-sdk-integration/SKILL.md @@ -168,7 +168,7 @@ For languages without an official client, use the REST API directly. ### Start a Run ``` -POST https://api.apify.com/v2/acts/{actorId}/runs +POST https://api.apify.com/v2/actors/{actorId}/runs Authorization: Bearer Content-Type: application/json @@ -178,7 +178,7 @@ Content-Type: application/json ### Get Run Status ``` -GET https://api.apify.com/v2/acts/{actorId}/runs/{runId} +GET https://api.apify.com/v2/actor-runs/{runId} Authorization: Bearer ```