action moonmoonmoonmoon_marks_index { label: "Fetches marks" description: "The main method for querying the marks database. You may use the following options:\n
    \n
  1. No parameters to retrieve all marks in descending chronological order (use before for pagination)
  2. \n
  3. popular (and optionally last_popular_id) to retrieve all popular marks
  4. \n
  5. featured to retrieve all featured marks
  6. \n
  7. x & y to retrieve mark at specific coordinate
  8. \n
  9. user to retrieve all marks created by the specified user
  10. \n
  11. collection to retrieve all marks collected by the specified user
  12. \n
" provider: moonmoonmoonmoon method: GET path: "/api/marks" encoding: json input: { type: "object" properties: { before: { type: "string" } collection: { type: "string" } featured: { type: "string" } last_popular_id: { type: "string" } popular: { type: "string" } user: { type: "string" } x: { type: "string" } y: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }