Skip to main content
GET
/
v1
/
email
/
inbox
List inbound emails
curl --request GET \
  --url https://api.usenaive.ai/v1/email/inbox \
  --header 'Authorization: Bearer <token>'
{
  "emails": [
    {
      "id": "<string>",
      "from": "<string>",
      "to": "<string>",
      "subject": "<string>",
      "snippet": "<string>",
      "received_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true
}

Authorizations

Authorization
string
header
required

Workspace API key. Create one via the dashboard or POST /v1/auth/keys.

Query Parameters

limit
integer
default:20
Required range: x <= 100
offset
integer
default:0
from_inbox
string

Response

200 - application/json

OK.

emails
object[]
has_more
boolean