Skip to main content
GET
/
jobs
List your jobs
curl --request GET \
  --url https://interview.gomu.ai/api/v1/jobs \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "results": [
      {
        "name": "Software Engineer",
        "qodeJobId": "478e8e8b-87c9-4c2a-926f-ebce52442d39",
        "userId": "cmookvkba00098tcgmxvs2mup",
        "createdAt": "2026-03-12T08:21:00.000Z",
        "updatedAt": "2026-05-01T12:00:00.000Z"
      }
    ],
    "total": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aansi.qode.world/llms.txt

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

Authorizations

Authorization
string
header
required

Provide the API key issued to you by the Aansi team. Send it as Authorization: Bearer <api-key> on every request.

Query Parameters

pageIndex
integer
default:1

Page index (1-based).

Required range: x >= 1
pageSize
integer
default:20

Number of items per page (max 100).

Required range: 1 <= x <= 100

Response

Job list

success
boolean
Example:

true

data
object