Error Tracking

Get Error Embeddings

POST
/v0/errors/embeddings

Authorization

apiKeyAuth
x-api-key<token>

FastStats API key. Pass it in the x-api-key header or as a Bearer token in the Authorization header.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v0/errors/embeddings" \  -H "Content-Type: application/json" \  -d '{    "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8"  }'
{  "rows": [    {      "exactHash": "string",      "errorType": "string",      "message": "string",      "occurrences": 0,      "matchingStackCount": 0,      "affectedSessionCount": 0,      "errorTypes": [        "string"      ],      "languages": [        "string"      ],      "eventTrend": [        0      ],      "firstSeen": 0,      "lastSeen": 0    }  ],  "total": 0,  "totalGroups": 0,  "errorTypes": [    "string"  ],  "languages": [    "string"  ],  "nextCursor": "string"}