PoliscopePoliscope
APIReferenzFocusregions

/focusregions

GET
/focusregions

List focusregions where the authenticated user is a team member, with optional pagination and detail level.

AuthorizationBearer <token>

API key as Bearer token

In: header

Query Parameters

limit?number
Default10
Range1 <= value <= 500
offset?number
Default0
Range0 <= value
detail?string

Controls response detail level. summary: lightweight overview, fastest, ideal for result lists and quick searches. standard: richer data for displaying detailed cards or results. full: includes deeply nested fields, best for analysis or full context rendering.

Default"summary"
Value in"summary" | "standard" | "full"
type?string

Filter by focusregion type. Defaults to 'vector'.

Default"vector"
Value in"rpm" | "vector"

Response Body

application/json

application/json

application/json

curl -X GET "https://api.poliscope.de/v2/focusregions"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "type": "string",
      "query": "string",
      "team": [
        {
          "userId": "string",
          "firstName": "string",
          "lastName": "string",
          "email": "string",
          "paused": true,
          "lastVisit": "string",
          "newResultsCount": 0
        }
      ],
      "searchMode": "string",
      "entityIds": [
        "string"
      ],
      "levels": [
        "string"
      ],
      "topics": {},
      "rpmEdits": {},
      "rpmEntities": [
        {
          "id": "string",
          "name": "string",
          "level": "10",
          "location": {
            "lat": 0,
            "lon": 0
          },
          "parents": [
            {
              "id": "string",
              "name": "string",
              "level": "10"
            }
          ]
        }
      ]
    }
  ],
  "meta": {
    "pagination": {
      "total": 0,
      "limit": 0,
      "offset": 0
    }
  }
}
{
  "error": "string",
  "message": "string"
}
{
  "error": "string",
  "message": "string"
}