Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.26 KB

File metadata and controls

31 lines (20 loc) · 1.26 KB
id access-apify-api
title Accessing Apify API

import CodeBlock from '@theme/CodeBlock';

import ActorClientExample from '!!raw-loader!./code/08_actor_client.py'; import ActorNewClientExample from '!!raw-loader!./code/08_actor_new_client.py';

The Apify SDK contains many useful features for making Actor development easier. However, it does not cover all the features the Apify API offers.

For working with the Apify API directly, you can use the provided instance of the Apify API Client library.

Actor client

To access the provided instance of ApifyClientAsync, you can use the Actor.apify_client property.

For example, to get the details of your user, you can use this snippet:

{ActorClientExample}

Actor new client

If you want to create a completely new instance of the client, for example, to get a client for a different user or change the configuration of the client,you can use the Actor.new_client method:

{ActorNewClientExample}