Skip to main content
GET
/
transactions
List all transactions (Dashboard)
curl --request GET \
  --url http://localhost/mogl/mogl-compliance-backend/api/compliance/transactions \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Successfully retrieved transactions.",
  "data": {
    "total": 150,
    "transactions": [
      {}
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.mogl.online/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Use the /api/login endpoint to obtain a token.

Query Parameters

start_date
string<date>

Start date (YYYY-MM-DD). Date filter presets: All time = empty, Last 30 days = today-30 (default), Last week = previous Mon-Sun, This week = current Mon-Sun, Custom Range = user-selected date.

Example:

"2026-02-16"

end_date
string<date>

End date (YYYY-MM-DD).

Example:

"2026-03-18"

q
string

Search query string (athlete name, etc.)

Example:

""

is_current_athlete
enum<string>

Filter by athlete status: Y = Current Athletes, N = Former Athletes, A = All Athletes (default).

Available options:
Y,
N,
A
Example:

"Y"

mogl_deals_only
boolean

Show only MOGL deals (excludes disclosed/third-party jobs).

Example:

true

page
integer

Page number for pagination.

Example:

1

items
integer

Number of items per page (default 10).

Example:

10

college_id
integer

Filter by specific university/college ID.

Response

Transaction list

status
boolean
Example:

true

message
string
Example:

"Successfully retrieved transactions."

data
object