From b45977a0c49adc404f9481f9bda67b7a9d26e1af Mon Sep 17 00:00:00 2001 From: Marek Honzal Date: Fri, 31 Jul 2026 11:08:00 +0200 Subject: [PATCH] fix: use canonical /v2/actors and /v2/actor-runs routes in REST API examples --- skills/apify-sdk-integration/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/apify-sdk-integration/SKILL.md b/skills/apify-sdk-integration/SKILL.md index 2c49751..eafe058 100644 --- a/skills/apify-sdk-integration/SKILL.md +++ b/skills/apify-sdk-integration/SKILL.md @@ -169,7 +169,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 @@ -179,7 +179,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 ```