This is a Java client library for easily integrating Pipl's APIs into your application.
- Full details about Pipl's APIs - https://pipl.com/api
- This library is available in other languages - https://docs.pipl.com/docs/code-libraries
- Google Gson, you can find it inside this project under
lib/google/
or download from here. - The library was tested on Java 7 but will probably work on earlier versions as well.
- Import the piplapis jar file (can be found under
lib/
) or compile the source code (can be found undersrc/
)
import com.pipl.api.search.SearchAPIRequest;
import com.pipl.api.search.SearchAPIResponse;
import com.pipl.api.search.SearchConfiguration;
SearchConfiguration configuration = new SearchConfiguration();
configuration.setProtocol("https");
configuration.apiKey = 'YOURKEY'
SearchAPIRequest request = new
SearchAPIRequest.Builder().email("clark.kent@example.com").firstName("Clark").lastName("Kent").configuration(configuration).build();
Pipl's Search API
- API Portal - https://pipl.com/api/
- Code snippets - https://docs.pipl.com/docs/code-snippets
- Full reference - https://docs.pipl.com/reference/