> ## Documentation Index
> Fetch the complete documentation index at: https://wpay-feat-edp-guide.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Find a buyer

> Find a customer record by our ID or your own identifier.

The [`GET /buyers`][api] API makes it possible to find a buyer by its `external_identifier` value.

<CodeGroup>
  ```bash cURL
  curl -i -X GET "https://api.example.gr4vy.app/buyers?external_identifier=fe26475d-ec3e-4884-9553-f7356683f7f9" \
      -H "Authorization: Bearer [JWT_TOKEN]"
  ```

  ```js Node
  const buyers = await client.listBuyers("fe26475d-ec3e-4884-9553-f7356683f7f9");
  ```
</CodeGroup>

If no buyers could be found the returned items will be an empty list.

```json GET /buyers?external_identifier=fe26475d-ec3e-4884-9553-f7356683f7f9
{
  "items": [
    {
      "type": "buyer",
      "id": "fe26475d-ec3e-4884-9553-f7356683f7f9",
      "external_identifier": "412231123",
      "display_name": "John L.",
      "created_at": "2013-07-16T19:23:00.000Z",
      "updated_at": "2013-07-16T19:23:00.000Z"
    }
  ],
  "limit": 100,
  "next_page": null,
  "previous_page": null
}
```

[api]: /reference/buyers/list-buyers
