---
title: "Finds an existing profile"
method: GET
path: "/api/v1/languages/{language_id}/profiles"
tags: ["Profiles"]
---

# Finds an existing profile

`GET /api/v1/languages/{language_id}/profiles`

Finds an existing profile by the profiles `id` or `email`.

## Path parameters

- `language_id` string, required

## Query parameters

- `email` string
- `id` string

## Response `200`

Profile successfully found

- object
  - `profile` Profile
    - `id` union, required
      - string
      - integer
    - `birthdate` string, date-time
    - `city` string
    - `province` string
    - `street` string
    - `housenumber` string
    - `zipcode` string
    - `country_code` string
    - `email` string, email, required
    - `first_name` string
    - `middle_name` string
    - `last_name` string
    - `gender` 'unidentified' | 'male' | 'female'
    - `active` boolean
    - `subscribed_to_newsletter` boolean
    - `subscribed_to_newsletter_at` string, date-time
    - `tags` string[] — A list of tags for to this profile.
    - `telephone` string

## Other responses

- `400` — Missing required parameters or unknown parameters
- `401` — Not authorized
- `404` — Language not found
- `500` — Unexpected error

---

[API](https://skmtc.dev/reloadify/apis/reloadify-api.md) · [All operations](https://skmtc.dev/reloadify/apis/reloadify-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/reloadify/reloadify-api/revisions/a5697c4fb1c3/schema)
