B4M API Explorer

Interactive Bike4Mind API reference and testing tool

Select Endpoint

List Notebooks

List your notebooks. Returns session metadata including tags, knowledge IDs, and timestamps.


Endpoint

GET
https://app.bike4mind.com/api/sessions

Required Scopes

notebooks:read

Response Schema

{
  "data": [{
    "_id": "string",
    "name": "string",
    "userId": "string",
    "lastUpdated": "ISO 8601 date",
    "firstCreated": "ISO 8601 date",
    "knowledgeIds": ["string"],
    "artifactIds": ["string"],
    "toolIds": ["string"],
    "agentIds": ["string"],
    "tags": [{
      "name": "string",
      "strength": "number (0-10)"
    }],
    "summary": "string (optional)",
    "summaryAt": "ISO 8601 date (optional)",
    "isAutoNamed": "boolean"
  }],
  "hasMore": "boolean"
}

Example cURL

curl -X GET \
  -H "X-API-Key: your_api_key_here" \
  -H "Content-Type: application/json" \
  https://app.bike4mind.com/api/sessions