Skip to main content
GET
/
content
/
feed
Get paginated content feed
curl --request GET \
  --url https://api.jup.ag/tokens/v2/content/feed
{
  "data": {
    "contents": [
      {
        "contentId": "<string>",
        "content": "<string>",
        "contentType": "text",
        "status": "approved",
        "source": "<string>",
        "submittedAt": "<string>",
        "submittedBy": {
          "id": "<string>",
          "username": "<string>",
          "role": "<string>"
        },
        "updatedAt": "<string>",
        "updatedBy": {
          "id": "<string>",
          "username": "<string>",
          "role": "<string>"
        },
        "postedAt": "<string>"
      }
    ],
    "tokenSummary": {
      "summaryFull": "<string>",
      "summaryShort": "<string>",
      "updatedAt": "<string>",
      "citations": [
        "<string>"
      ]
    },
    "newsSummary": {
      "summaryFull": "<string>",
      "summaryShort": "<string>",
      "updatedAt": "<string>",
      "citations": [
        "<string>"
      ]
    },
    "pagination": {
      "limit": 123,
      "total": 123,
      "page": 123,
      "totalPages": 123
    }
  }
}

Query Parameters

mint
string
required

Solana token mint address

Example:

"JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN"

page
integer
default:1

Page number (starts from 1)

Required range: x >= 1
Example:

1

limit
integer
default:50

Number of items per page (1-100)

Required range: 1 <= x <= 100
Example:

50

Response

Successfully retrieved content feed

data
object
required