Returns a paginated list of POIs
Returns a paginated list of POIs optionally filtered by type, appId and/or query
Query parameters
- 
    
  page number 
- 
    
  items per page 
- 
    
  Filter for poi type, no filter returns all types Values are GasStationorSpeedCamera.
- 
    
  Filter id for app id, no filter returns pois for all apps 
Responses
- 
      
      
        OK 
- 
      
      
        Bad request 
- 
      
      
        OAuth token missing or invalid or a linked identity is missing. Linked identity missing is a special case where you need to make sure that the user has additionally logged in / authorized with a third-party. This is not relevant for most use-cases. The specific error code that identifies a missing linked identity is missing-linked-identityExample: { "errors": [ { "id": "cbgmhslmp1o9or9kh1p0", "title": "Missing linked identity for authorized access", "detail": "Linked identity is needed to access this resource, please check why the user does not have a linked identity", "status": "401", "code": "missing-linked-identity" } ] }
- 
      
      
        The specified accept header is invalid 
- 
      
      
        Internal server error 
        GET
    /pois
  
  curl \
 --request GET 'https://api.pace.cloud/poi/2024-2/pois' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
        Response examples (200)
  
  {
  "data": [
    {
      "type": "GasStation",
      "id": "f106ac99-213c-4cf7-8c1b-1e841516026b",
      "attributes": {
        "countryId": "DE",
        "position": {
          "type": "Point",
          "coordinates": [
            -71.1043443253471,
            42.3150676015829
          ]
        },
        "boundary": {
          "type": "Polygon",
          "coordinates": [
            [
              8.424,
              49.012
            ],
            [
              9.34,
              49.1
            ],
            [
              8.424,
              49.012
            ]
          ]
        },
        "data": [
          {
            "field": "name",
            "value": "string"
          }
        ],
        "metadata": [
          {
            "field": "name",
            "SourceId": "f106ac99-213c-4cf7-8c1b-1e841516026b",
            "UpdatedAt": "2025-05-04T09:42:00Z"
          }
        ],
        "active": true,
        "createdAt": "2025-05-04T09:42:00Z",
        "updatedAt": "2025-05-04T09:42:00Z",
        "lastSeenAt": "2025-05-04T09:42:00Z",
        "references": [
          "prn:psp:sites:010876234876238991"
        ]
      },
      "relationships": {
        "referenceStatuses": {
          "data": [
            {
              "type": "referenceStatus",
              "id": "prn:psp:sites:010876234876238991"
            }
          ]
        },
        "sucessorOf": {
          "data": [
            {
              "type": "gasStation",
              "id": "a124aa35-8b67-2500-1113-45c8036789aa"
            }
          ]
        }
      }
    }
  ],
  "included": [
    {
      "type": "referenceStatus",
      "id": "prn:psp:sites:010876234876238991",
      "attributes": {
        "status": "online",
        "updatedAt": "2018-06-01T00:00:00Z"
      }
    }
  ]
}
        Response examples (400)
  
  {
  "errors": [
    {
      "id": "string",
      "links": {
        "about": "string"
      },
      "status": "string",
      "code": "string",
      "title": "string",
      "detail": "string",
      "source": {
        "pointer": "string",
        "parameter": "string"
      },
      "meta": {}
    }
  ]
}
        Response examples (401)
  
  {
  "errors": [
    {
      "id": "string",
      "links": {
        "about": "string"
      },
      "status": "string",
      "code": "string",
      "title": "string",
      "detail": "string",
      "source": {
        "pointer": "string",
        "parameter": "string"
      },
      "meta": {}
    }
  ]
}
        Response examples (406)
  
  {
  "errors": [
    {
      "id": "string",
      "links": {
        "about": "string"
      },
      "status": "string",
      "code": "string",
      "title": "string",
      "detail": "string",
      "source": {
        "pointer": "string",
        "parameter": "string"
      },
      "meta": {}
    }
  ]
}
        Response examples (500)
  
  {
  "errors": [
    {
      "id": "string",
      "links": {
        "about": "string"
      },
      "status": "string",
      "code": "string",
      "title": "string",
      "detail": "string",
      "source": {
        "pointer": "string",
        "parameter": "string"
      },
      "meta": {}
    }
  ]
}