Skip to main content
GET
https://api.app.shinzo.ai
/
auth
/
fetch_ingest_tokens
List Ingest Tokens
curl --request GET \
  --url https://api.app.shinzo.ai/auth/fetch_ingest_tokens \
  --header 'Authorization: Bearer <token>'

Authentication

Requires JWT token authentication.

Example Request

curl -X GET https://api.app.shinzo.ai/auth/fetch_ingest_tokens \
  -H "Authorization: Bearer <jwt_token>"

Response

{
  "tokens": [
    {
      "uuid": "itk_abc123def456",
      "created_at": "2025-01-15T10:00:00Z",
      "last_used_at": "2025-01-20T14:30:00Z",
      "status": "active"
    },
    {
      "uuid": "itk_xyz789uvw012",
      "created_at": "2025-01-10T08:00:00Z",
      "last_used_at": "2025-01-18T09:15:00Z",
      "status": "active"
    }
  ]
}
Token values are not returned when listing tokens. Only metadata is shown.

Status Codes

CodeDescription
200Tokens retrieved successfully
401Invalid or missing JWT token