Einpix API documentation
  1. Venue
Einpix API documentation
  • Changelog
  • About
  • API
    • Task
      • Create
      • List
      • Detail
      • Change status
    • Checklist
      • By task
    • Client
      • List
      • Detail
    • User
      • List
      • Detail
    • Venue
      • Create
        POST
      • List
        GET
      • Detail
        GET
    • Category
      • Task
        • List
        • Detail
    • Tag
      • List
      • Detail
    • Template
      • Checklist
        • List
        • Detail
    • Equipment
      • List
      • Detail
    • Comment
      • Create
      • Detail
    • Worklog
      • List
      • Hisory
    • Materials
      • By task
    • Service
      • By task
  • Schemas
    • User
    • Venue
    • Task
    • Task comment
    • Tag
    • Task category
    • Picture
    • Check item
    • Equipment
    • Client
    • Task severity
    • Attachment
    • Changed log
    • User group
    • WDJ material
    • Unit master
    • WDJ service
    • Worklog History
    • Checklist template
    • Worklog
    • Activity task
    • Downtime task
    • Sla rule
  1. Venue

List

GET
venues/{page}
Retrieves the list of venues.

Pagination Information#

The Einpix API returns a maximum of 50 venues per request.
To retrieve the next set of 50 venues, update the page parameter by incrementing it by 1 from the previous request.
Filtering with since and before
since
Returns only the records created or updated after the given datetime.
Use this when you want to fetch new or modified data since a specific point in time.
before
Returns only the records created or updated before the given datetime.
Use this when you want to fetch historical data up to a certain point in time.
Usage Examples
Get items created/updated after or/and before August 1st, 2025, 10:30 AM Vilnius:
?since=2025-08-01T10:30:00%2B03:00
Values
?since=2025-08-01T10:30:00%2B03:00
?before=2025-08-01T10:30:00%2B03:00
Values explanation:
since/before - Query params name
2025-08-01 - The date
T - Separator between date and time
10:30:00 - Time
%2B - URL encoding for +
Recognized the format - 2025-08-01T10:30:00+05:30
Request to format dates and times
When providing dates and times, please always use two digits for months, days, hours, minutes, and seconds.
✅ Correct format:
2018-1-1 -> 2018-01-01
9:5:7 -> 09:05:07

Request

Path Params

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.einpix.com/public/v1/venues/1?since={{SINCE_ISO}}&before={{BEFORE_ISO}}'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": -55331801,
        "name": "tenetur at quae",
        "street_address": "6763 Maiya Walk",
        "latitude": 70.485,
        "longitude": -172.4078,
        "city": "Idaho Falls",
        "country": "Liechtenstein",
        "radius": 200
    },
    {
        "id": 29865133,
        "name": "sit exercitationem explicabo",
        "street_address": "767 Anderson Ports",
        "latitude": -80.5768,
        "longitude": 95.6059,
        "city": "Trujillo Alto",
        "country": "France",
        "radius": 200
    }
]
Modified at 2025-08-31 20:16:57
Previous
Create
Next
Detail
Built with