List api keys
Retrieves the list of API keys associated with this account
GEThttps://api.devalgoseek.com/api/v1/account/my/api-keys#
Retrieves the list of API keys associated with this account
Responses#
- 200
- 403
Successful Response
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
namestring
User-provided name identifier for the API key.
Example:
My Production Keyreferencestringrequired
Last four characters of the API key value, used for identification.
Example:
ab1Cperson objectrequired
Details of the person who owns the API key.
first_namestringrequired
First name of the person who owns the API key.
Example:
Johnlast_namestringrequired
Last name of the person who owns the API key.
Example:
Doeemailstringrequired
Email address of the person who owns the API key.
Example:
john.doe@example.comlast_used_atdate-time
Timestamp of the last time the API key was used.
Example:
2026-04-01T12:30:00Zexpires_atdate-timerequired
Expiration timestamp after which the API key can no longer be used.
Example:
2027-04-07T00:00:00Zis_activebooleanrequired
Whether the API key is currently active and can be used for authentication.
Example:
true[
{
"name": "My Production Key",
"reference": "ab1C",
"person": {
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com"
},
"last_used_at": "2026-04-01T12:30:00Z",
"expires_at": "2027-04-07T00:00:00Z",
"is_active": true
}
]
Forbidden
- application/json
No schema
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- postman-cli
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.devalgoseek.com/api/v1/account/my/api-keys");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("X-API-KEY", "<X-API-KEY>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Response
Click the Send API Request button above and see the response here!