JavaScript
import Openregister from 'openregister'; const client = new Openregister({ apiKey: 'My API Key', }); const response = await client.search.findPersonV1(); console.log(response.pagination);
{ "results": [ { "id": "<string>", "name": "<string>", "city": "<string>", "date_of_birth": "<string>", "active": true } ], "pagination": { "page": 123, "per_page": 123, "total_pages": 123, "total_results": 123 } }
API Key Authentication Provide your API key as a Bearer token in the Authorization header.
Search query to filter people.
Show child attributes
Filters to filter people.
Pagination parameters.
Successful search operation
List of people matching the search criteria.
Was this page helpful?