Get article categories list

URL: GET /news/article-categories

Accept-Language header : en, ru, es, it, fr, ee

Response:

                {
  "code": 200,
  "data": {
    "items": [
      {
        "slug": "cat-1",
        "title": "Politics",
        "lang": "en"
      },
      {
        "slug": "cat-2",
        "title": "Economy",
        "lang": "en"
      }
    ]
  },
  "message": "OK"
}
              

Get all articles list

URL: GET /news/article-list

Query params : page, per-page

Accept-Language header : en, ru, es, it, fr, ee

Response:

                {
  "code": 200,
  "data": {
    "items": [
      {
        "title": "Payments Company Curve",
        "lang": "en",
        "image": "https://stockpoint-static-ng-prod.s3.eu-central-1.amazonaws.com/news/myimage.png",
        "slug": "payments-company-curve-bids-for-blockfis-87000-credit-2",
        "slug_category": "cat-1",
        "short_text": "Payments company Curve is in active discussions to acquire crypto lender BlockFi's more than 87,000 credit card customers — whose credit cards have been suspended since Nov. 11.",
        "event_date": 1668516389
      }
    ],
    "pagination": {
      "page": 1,
      "page_size": 10,
      "total_count": 1
    }
  },
  "message": "OK"
}
              

Get articles by category list

URL: GET /news/article-list/{category_slug}

Query params : page, per-page

Accept-Language header : en, ru, es, it, fr, ee

Response:

                {
  "code": 200,
  "data": {
    "items": [
      {
        "title": "Payments Company Curve",
        "lang": "en",
        "image": "https://stockpoint-static-ng-prod.s3.eu-central-1.amazonaws.com/news/myimage.png",
        "slug": "payments-company-curve-bids-for-blockfis-87000-credit",
        "slug_category": "cat-1",
        "short_text": "Payments company Curve is in active discussions to acquire crypto lender BlockFi's more than 87,000 credit card customers — whose credit cards have been suspended since Nov. 11.",
        "event_date": 1668516389
      }
    ],
    "pagination": {
      "page": 1,
      "page_size": 10,
      "total_count": 1
    }
  },
  "message": "OK"
}
              

Get article single

URL: GET /news/article-single/{slug}

Response:

                {
  "code": 200,
  "data": {
    "article": {
      "title": "Payments Company Curve",
      "lang": "en",
      "image": "https://stockpoint-static-ng-prod.s3.eu-central-1.amazonaws.com/news/myimage.png",
      "slug": "payments-company-curve-bids-for-blockfis-87000-credit",
      "slug_category": "cat-1",
      "short_text": "Payments company Curve is in active discussions to acquire crypto lender BlockFi's more than 87,000 credit card customers — whose credit cards have been suspended since Nov. 11.",
      "text": "Payments company Curve is in active discussions to acquire crypto lender BlockFi's more than 87,000 credit card customers — whose credit cards have been suspended since Nov. 11.\nA Curve spokesperson told Cointelegraph that “outreach and negotiations” started on Nov. 12 and are still in the process with Banking as a Service (BaaS) company Deserve, which services the BlockFi card program.",
      "event_date": 1668516389
    }
  },
  "message": "OK"
}
              

Get FAQ categories list

URL: GET /news/faq-categories

Accept-Language header : en, ru, es, it, fr, ee

Response:

                {
  "code": 200,
  "data": {
    "items": [
      {
        "title": "Settings",
        "slug": "cat-1",
        "lang": "en"
      },
      {
        "title": "Trading",
        "slug": "cat-2",
        "lang": "en"
      }
    ]
  },
  "message": "OK"
}
              

Get FAQ full list

URL: GET /news/faq-list

Query params : page, per-page

Accept-Language header : en, ru, es, it, fr, ee

Response:

                {
  "code": 200,
  "data": {
    "items": [
      {
        "title": "I can't sign in to my account",
        "lang": "en",
        "short_text": "When you sign in to your account, make sure you've entered all the information correctly:\nLogin- email used for registration;\nPassword (Case Sensitive! Please pay attention to upper and lower case).\nIf you have forgotten your password, use the \"Password Recovery\" function.\nOn the specified email will receive a letter with instructions and a code to restore access to your account. After logging in to your account, you must change your password. For security reasons, once you reset your password, all withdrawals to your account will be blocked for 48 hours.",
        "youtube_id": "asd"
      },
      {
        "title": "How to register?",
        "lang": "en",
        "short_text": "To register, you must enter a valid email address, create a password and enter a captcha. You will receive an email with a link to confirm your registration. If the email doesn't arrive, check your spam folder.",
        "youtube_id": "asd"
      }
    ],
    "pagination": {
      "page": 1,
      "page_size": 20,
      "total_count": 2
    }
  },
  "message": "OK"
}
              

Get FAQ by category list

URL: GET /news/faq-list/{category_slug}

Query params : page, per-page

Accept-Language header : en, ru, es, it, fr, ee

Response:

                {
  "code": 200,
  "data": {
    "items": [
      {
        "title": "I can't sign in to my account",
        "lang": "en",
        "short_text": "When you sign in to your account, make sure you've entered all the information correctly:\nLogin- email used for registration;\nPassword (Case Sensitive! Please pay attention to upper and lower case).\nIf you have forgotten your password, use the \"Password Recovery\" function.\nOn the specified email will receive a letter with instructions and a code to restore access to your account. After logging in to your account, you must change your password. For security reasons, once you reset your password, all withdrawals to your account will be blocked for 48 hours.",
        "youtube_id": "asd"
      },
      {
        "title": "How to register?",
        "lang": "en",
        "short_text": "To register, you must enter a valid email address, create a password and enter a captcha. You will receive an email with a link to confirm your registration. If the email doesn't arrive, check your spam folder.",
        "youtube_id": "asd"
      }
    ],
    "pagination": {
      "page": 1,
      "page_size": 20,
      "total_count": 2
    }
  },
  "message": "OK"
}