Home / Function/ get_api_list() — anthropic-sdk-python Function Reference

get_api_list() — anthropic-sdk-python Function Reference

Architecture documentation for the get_api_list() function in _base_client.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  29ba82c2_84c4_d715_dbaa_89eef1782535["get_api_list()"]
  4b46ed95_ff71_ea5d_7534_6929dc929bdb["SyncAPIClient"]
  29ba82c2_84c4_d715_dbaa_89eef1782535 -->|defined in| 4b46ed95_ff71_ea5d_7534_6929dc929bdb
  6a04a9a3_665a_b4ac_5fcf_8eaa429b5f9d["get_api_list()"]
  6a04a9a3_665a_b4ac_5fcf_8eaa429b5f9d -->|calls| 29ba82c2_84c4_d715_dbaa_89eef1782535
  fd93a81d_e05c_b682_aed9_45b0ae941ae3["_request_api_list()"]
  29ba82c2_84c4_d715_dbaa_89eef1782535 -->|calls| fd93a81d_e05c_b682_aed9_45b0ae941ae3
  6a04a9a3_665a_b4ac_5fcf_8eaa429b5f9d["get_api_list()"]
  29ba82c2_84c4_d715_dbaa_89eef1782535 -->|calls| 6a04a9a3_665a_b4ac_5fcf_8eaa429b5f9d
  4e74c968_63fc_ca6c_ccf4_c01326e7060e["construct()"]
  29ba82c2_84c4_d715_dbaa_89eef1782535 -->|calls| 4e74c968_63fc_ca6c_ccf4_c01326e7060e
  style 29ba82c2_84c4_d715_dbaa_89eef1782535 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/anthropic/_base_client.py lines 1439–1450

    def get_api_list(
        self,
        path: str,
        *,
        model: Type[object],
        page: Type[SyncPageT],
        body: Body | None = None,
        options: RequestOptions = {},
        method: str = "get",
    ) -> SyncPageT:
        opts = FinalRequestOptions.construct(method=method, url=path, json_data=body, **options)
        return self._request_api_list(model, page, opts)

Subdomains

Called By

Frequently Asked Questions

What does get_api_list() do?
get_api_list() is a function in the anthropic-sdk-python codebase, defined in src/anthropic/_base_client.py.
Where is get_api_list() defined?
get_api_list() is defined in src/anthropic/_base_client.py at line 1439.
What does get_api_list() call?
get_api_list() calls 3 function(s): _request_api_list, construct, get_api_list.
What calls get_api_list()?
get_api_list() is called by 1 function(s): get_api_list.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free