---
title: "Retrieve a contact"
description: "Addresses are stored lowercased and the lookup matches that way, so case in the path does not matter. The single-contact response also carries `audiences`, every list the contact is in."
url: "https://openemail.uk/docs/api/contacts/get"
area: "API"
category: "Mailbox"
---

# Retrieve a contact

Addresses are stored lowercased and the lookup matches that way, so case in the path does not matter. The single-contact response also carries `audiences`, every list the contact is in.

`GET /contacts/{email}`

## GET /contacts/{email}

Addresses are stored lowercased and the lookup matches that way, so case in the path does not matter. The single-contact response also carries `audiences`, every list the contact is in.

## Example

Needs `contacts:read`. URL-encode the `@`.

**curl**

```
curl "$OE/contacts/ada%40example.com" -H "$AUTH"
```

**Response**

```
{
  "object": "contact",
  "email": "ada@example.com",
  "name": "Ada Lovelace",
  "source": "auto",
  "notes": null,
  "lastSeenAt": "2026-08-29T08:19:08.000Z",
  "createdAt": "2026-08-01T10:00:00.000Z",
  "updatedAt": "2026-08-29T08:19:08.000Z",
  "audiences": [
    { "id": "aud_9f2c4b7e1a0d63d84c5f2e7b", "name": "All contacts", "builtin": "default" }
  ]
}
```

> An unknown address is a `404`, not an empty contact.

> Writing is on the neighbouring pages: Create a contact, Update a contact and Delete a contact.
