User API Keys

https://api.xata.io/user/keys

This endpoint allows interacting with the API keys for a given user.

Get the List of User API Keys

GET
https://api.xata.io/user/keys

Retrieve a list of existing user API keys

Responses

type GetUserAPIKeys = {
    keys: {
        name: string;
        createdAt: DateTime;
    }[];
};
 
/**
 * @format date-time
 */
type DateTime = string;