### Suggest Operations Source: https://developer.api.oclc.org/viaf-api Autosuggest possible matching authority clusters based on a string. ```APIDOC ## GET /viaf/AutoSuggest ### Description Suggests possible matching authority clusters based on an input string. ### Method GET ### Endpoint /viaf/AutoSuggest ### Response #### Success Response (200) - **VIAFAutoSuggest** (object) - Contains the auto-suggestion results. ### Response Example { "example": "VIAFAutoSuggest object" } ``` -------------------------------- ### Search Operations Source: https://developer.api.oclc.org/viaf-api Search across VIAF Authority Clusters and Source Records. ```APIDOC ## GET /viaf/search ### Description Searches VIAF data for Authority Clusters. ### Method GET ### Endpoint /viaf/search ### Response #### Success Response (200) - **VIAFResults** (object) - Contains the search results for Authority Clusters. ### Response Example { "example": "VIAFResults object" } ``` ```APIDOC ## GET /processed/search/processed ### Description Searches VIAF data for processed Authority Source Records. ### Method GET ### Endpoint /processed/search/processed ### Response #### Success Response (200) - **SourceResults** (object) - Contains the search results for Authority Source Records. ### Response Example { "example": "SourceResults object" } ``` -------------------------------- ### Authority Source Record Operations Source: https://developer.api.oclc.org/viaf-api Access and search Authority Source Records within VIAF. ```APIDOC ## GET /processed/{authoritySourceCode}|{localAuthorityId} ### Description Retrieves an Authority Source resource by its source code and local authority ID. ### Method GET ### Endpoint /processed/{authoritySourceCode}|{localAuthorityId} ### Parameters #### Path Parameters - **authoritySourceCode** (string) - Required - The code for the authority source. - **localAuthorityId** (string) - Required - The local identifier within the authority source. ### Response #### Success Response (200) - **SourceResults** (object) - Contains details of the Authority Source resource. ### Response Example { "example": "SourceResults object" } ``` -------------------------------- ### Authority Cluster Operations Source: https://developer.api.oclc.org/viaf-api Retrieve and manage authority clusters using their unique identifiers or by translating other IDs. ```APIDOC ## GET /viaf/{id} ### Description Retrieves an Authority Cluster by its VIAF ID. ### Method GET ### Endpoint /viaf/{id} ### Parameters #### Path Parameters - **id** (string) - Required - The VIAF identifier for the authority cluster. ### Response #### Success Response (200) - **VIAFCluster** (object) - Contains details of the Authority Cluster. ### Response Example { "example": "VIAFCluster object" } ``` ```APIDOC ## GET /viaf/lccn/{lccn} ### Description Translates a Library of Congress Control Number (LCCN) to a VIAF URI. ### Method GET ### Endpoint /viaf/lccn/{lccn} ### Parameters #### Path Parameters - **lccn** (string) - Required - The LCCN to translate. ### Response #### Success Response (200) - **VIAFCluster** (object) - Contains the VIAF URI for the given LCCN. ### Response Example { "example": "VIAFCluster object with VIAF URI" } ``` ```APIDOC ## GET /viaf/sourceID/{authoritySourceCode}|{localAuthorityId} ### Description Retrieves a VIAF URI using pipe-concatenated authority source code and local authority ID values. ### Method GET ### Endpoint /viaf/sourceID/{authoritySourceCode}|{localAuthorityId} ### Parameters #### Path Parameters - **authoritySourceCode** (string) - Required - The code for the authority source. - **localAuthorityId** (string) - Required - The local identifier within the authority source. ### Response #### Success Response (200) - **VIAFCluster** (object) - Contains the VIAF URI for the given source ID. ### Response Example { "example": "VIAFCluster object with VIAF URI" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.