Skip to main content
GET
/
public
/
v1
/
board
/
list-boards
Node.js SDK
import { CoperaAI } from '@copera.ai/sdk';

const copera = CoperaAI({
  apiKey: 'your-api-key-here'
});

const boards = await copera.board.listBoards();
console.log(boards);
[
  {
    "_id": "<string>",
    "name": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "description": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://developer.copera.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token

Response

Default Response

_id
string
required
name
string
required
createdAt
string
required
updatedAt
string
required
description
string