# Projects

## Get Owner Info

<mark style="color:blue;">`GET`</mark> `https://api.imageseo.io/v1/external/projects/owner`

This endpoint returns you the information of the user who owns the API Key

#### Headers

| Name           | Type   | Description      |
| -------------- | ------ | ---------------- |
| Authentication | string | {YOUR\_API\_KEY} |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```javascript
{
    "success": true,
    "result": {
        "isActive": true,
        "current_request_images": 0,
        "bonus_stock_images": 0,
        "start_timelimit": "1555688843",
        "plan": {
            "slug": "free",
            "id": "plan_EDib7AIypKXJHN",
            "type": "month",
            "limit_images": 20,
            "limit_projects": 1,
            "price": 0,
            "name": "Free"
        },
        "id": "5cb9ed8bfc92d3af76324ef1"
    }
}
```

{% endtab %}

{% tab title="404 Not found" %}

```javascript
{
    "success": false,
    "code": "not_exist"
}
```

{% endtab %}
{% endtabs %}
