action moonmoonmoonmoon_marks_index {
label: "Fetches marks"
description: "The main method for querying the marks database. You may use the following options:\n
\n - No parameters to retrieve all marks in descending chronological order (use before for pagination)
\n - popular (and optionally last_popular_id) to retrieve all popular marks
\n - featured to retrieve all featured marks
\n - x & y to retrieve mark at specific coordinate
\n - user to retrieve all marks created by the specified user
\n - collection to retrieve all marks collected by the specified user
\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
}
}