forked from NdoleStudio/httpsms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.vue
More file actions
1173 lines (1132 loc) · 41.5 KB
/
Copy pathindex.vue
File metadata and controls
1173 lines (1132 loc) · 41.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<script setup lang="ts">
import {
mdiCheckCircle,
mdiSend,
mdiGift,
mdiLightbulbOn60,
mdiCreation,
mdiLockOutline,
mdiLanguagePython,
mdiCellphoneKey,
mdiTallyMark1,
mdiTallyMark3,
mdiTallyMark2,
mdiLabel,
mdiLanguageJavascript,
mdiLanguagePhp,
mdiPlus,
mdiMinus,
mdiLanguageCsharp,
mdiLanguageJava,
mdiMicrosoftExcel,
mdiWebhook,
mdiClockOutline,
mdiArrowRightThin,
mdiPowershell,
mdiLanguageGo,
} from '@mdi/js'
definePageMeta({
layout: 'website',
})
useHead({
title: 'Convert your android phone into an SMS gateway - httpSMS',
})
const config = useRuntimeConfig()
const { lgAndUp, mdAndUp, mdAndDown, md, smAndDown, xl } = useDisplay()
const selectedTab = ref('javascript')
const yearlyPricing = ref(false)
const faqPanel = ref<number | undefined>(undefined)
const pricing = ref(0)
const pricingLabels = ['10K', '20K', '50K', '100K', '200K']
const pricingLabelsFull = ['10,000', '20,000', '50,000', '100,000', '200,000']
const planMessages = computed(() =>
pricingLabels[pricing.value].replace('K', ',000'),
)
const planMonthlyPrice = computed(() => [20, 35, 89, 175, 350][pricing.value])
const planYearlyPrice = computed(
() => [200, 350, 1068, 2100, 4200][pricing.value],
)
const planYearlyMonthlyPrice = computed(
() => [16.66, 29.16, 89, 175, 350][pricing.value],
)
</script>
<template>
<div>
<VContainer>
<VRow :class="{ 'py-4': lgAndUp }">
<VCol
cols="12"
md="6"
class="pt-8 pb-16"
:class="{
'text-center': mdAndDown,
}"
>
<h1
class="text-display-large font-weight-bold pb-1 gradient-header"
:class="{
'mt-16 font-size-45': lgAndUp,
'mt-10': md,
'mt-n8': smAndDown,
}"
>
Convert your Android phone into an SMS gateway.
</h1>
<h2 class="text-medium-emphasis text-headline-small mt-8 mb-8">
<span class="gradient-underline">Save money</span> by using your
phone to send and receive SMS messages via a simple programmable API
with end-to-end encryption.
</h2>
<div :class="{ 'text-center': mdAndDown }">
<VBtn color="primary" size="large" class="mt-4 mb-4" to="/login">
<VIcon v-if="lgAndUp" start :icon="mdiSend" />
Get Started
</VBtn>
<VBtn
size="large"
variant="tonal"
class="mt-4 mb-4 ml-4"
href="https://sandbox.httpsms.com"
>
<VIcon v-if="lgAndUp" start :icon="mdiCreation" color="#ffe500" />
Live Demo
</VBtn>
</div>
<p class="text-body-medium mt-2">
⚡Trusted by <b>23,273+</b> users who send/receive more than
<b>500,000</b> messages per month.
</p>
<div class="mt-4" :class="{ 'text-center': mdAndDown }">
<VIcon color="success" :icon="mdiCheckCircle" />
Free to use
<VIcon class="ml-4" color="success" :icon="mdiCheckCircle" />
100% Open Source
</div>
<div v-if="xl" class="mt-4">
<a href="https://www.uneed.best/tool/httpsmscom">
<img
src="https://www.uneed.best/POTD1A.png"
style="width: 250px"
alt="Uneed POTD1 Badge"
/>
</a>
</div>
<VDivider
v-if="mdAndDown"
class="mt-6 mr-16 bg-success"
:class="{ 'ml-16': mdAndDown }"
/>
</VCol>
<VCol v-if="mdAndUp" cols="12" md="6" class="d-flex align-center">
<div
class="mx-auto"
style="max-width: 98%; width: 100%; aspect-ratio: 16/9"
>
<iframe
src="https://player.cloudinary.com/embed/?cloud_name=dnzklcz1h&public_id=httpsms.com"
width="100%"
height="100%"
style="border: none; border-radius: 8px"
allow="autoplay; fullscreen; encrypted-media; picture-in-picture"
allowfullscreen
/>
</div>
</VCol>
</VRow>
</VContainer>
<!-- Features Section -->
<VSheet class="py-16">
<VContainer>
<!-- Bulk SMS -->
<VRow class="mb-16">
<VCol cols="12" md="6" class="d-flex align-center" order-lg="2">
<div>
<h3
class="text-display-medium mb-1"
:class="{ 'mt-n8': mdAndUp }"
>
Bulk SMS
<VChip class="ma-2" color="pink" label>
<VIcon start :icon="mdiLabel" />
No code
</VChip>
</h3>
<h5 class="text-title-large font-weight-light my-2">
Fill in our bulk SMS
<a
class="text-decoration-none"
download
href="/templates/httpsms-bulk.csv"
>CSV template</a
>
or our
<a
class="text-decoration-none"
download
href="/templates/httpsms-bulk.xlsx"
>excel template</a
>
and upload it on httpSMS to send SMS messages to up to 1,000
recipients at once without writing any code.
</h5>
<VBtn
to="/blog/how-to-send-sms-messages-from-excel"
color="primary"
>
<VIcon start :icon="mdiMicrosoftExcel" />
Integration Guide
</VBtn>
</div>
</VCol>
<VCol cols="12" md="6" order-lg="1">
<VImg
class="mb-4"
max-height="400"
:src="'/img/bulk-sms-template.png'"
/>
</VCol>
</VRow>
<!-- Integrations -->
<VRow class="mb-16 mt-16">
<VCol cols="12" md="6" class="d-flex align-center" order-lg="1">
<div>
<h3 class="text-display-medium mb-1">
Integrations
<VChip class="ma-2" color="pink" label>
<VIcon start :icon="mdiLabel" />
No code
</VChip>
</h3>
<h5 class="text-title-large font-weight-light my-2">
Connect your workflow with thousands of other apps with the
power of Zapier. For example you can setup an automation to send
personalized SMS messages each time someone makes an order from
your shopify store or each time a new row is added to a Google
spreadsheet.
</h5>
<VBtn
to="/blog/send-sms-when-new-row-is-added-to-google-sheets-using-zapier"
color="primary"
>
Zapier Integration Guide
</VBtn>
</div>
</VCol>
<VCol cols="12" md="6" order-lg="2">
<VImg
class="mb-4"
:class="{ 'mt-16': mdAndUp }"
max-height="400"
:src="'/img/zapier-logo.svg'"
/>
</VCol>
</VRow>
<!-- Webhooks -->
<VRow class="mb-16 mt-16">
<VCol cols="12" md="6" class="d-flex align-center" order-lg="2">
<div>
<h3 class="text-display-medium mb-1">Webhooks</h3>
<h5 class="text-title-large font-weight-light my-2">
If you want to build advanced integrations, we support callback
URLs. The httpSMS platform can forward SMS messages received on
your Android phone to your server using a callback URL which you
provide.
</h5>
<VBtn
target="_blank"
href="https://docs.httpsms.com/webhooks/introduction"
color="primary"
>
<VIcon start :icon="mdiWebhook" />
Documentation
</VBtn>
</div>
</VCol>
<VCol cols="12" md="6" order-lg="1">
<VImg class="mb-4" max-height="300" :src="'/img/connection.svg'" />
</VCol>
</VRow>
<!-- Control Sending -->
<VRow class="mb-16 mt-16">
<VCol cols="12" md="6" class="d-flex align-center" order-lg="1">
<div>
<h3 class="text-display-medium mb-1">Control Sending</h3>
<h5 class="text-title-large font-weight-light my-2">
Send SMS messages without going over your mobile carrier
limitations. If you set a rate e.g 3 messages per minute, we
will queue up your messages and send them at a rate of 1 message
per 20 seconds.
</h5>
<VBtn
href="https://docs.httpsms.com/features/control-sms-send-rate"
color="primary"
>
<VIcon start :icon="mdiArrowRightThin" />
Documentation
</VBtn>
</div>
</VCol>
<VCol cols="12" md="6" order-lg="2">
<VImg class="mb-4" max-height="300" :src="'/img/queue.svg'" />
</VCol>
</VRow>
<!-- Monitoring -->
<VRow class="mb-16 mt-16">
<VCol cols="12" md="6" class="d-flex align-center" order-lg="2">
<div>
<h3 class="text-display-medium mb-1">Monitoring</h3>
<h5 class="text-title-large font-weight-light my-2">
If your android phone goes offline for some reason and it can't
send SMS messages, we will send you a notification immediately.
</h5>
</div>
</VCol>
<VCol cols="12" md="6" order-lg="1">
<VImg class="mb-4" max-height="300" :src="'/img/alert.svg'" />
</VCol>
</VRow>
<!-- Open Source -->
<VRow class="mt-16 mb-16">
<VCol cols="12" md="6" class="d-flex align-center" order-lg="1">
<div>
<h3 class="text-display-medium mb-1">Open Source</h3>
<h5 class="text-title-large mb-3 font-weight-light my-2">
httpSMS is transparent and fully open source. The source code is
available on GitHub. Feel free to fork it, verify it or submit a
pull request.
</h5>
<a
class="text-decoration-none"
:href="config.public.appGithubUrl"
>
<img
alt="GitHub Repo stars"
height="32"
src="https://img.shields.io/github/stars/NdoleStudio/httpsms?style=social"
/>
</a>
</div>
</VCol>
<VCol cols="12" md="6" order-lg="2">
<VImg
class="mb-4"
max-height="400"
:src="'/img/httpsms-github.png'"
/>
</VCol>
</VRow>
<!-- Encryption -->
<VRow class="mt-16">
<VCol cols="12" md="6" class="d-flex align-center" order-lg="2">
<div>
<h3 class="text-display-medium mb-1">Encryption 🔐</h3>
<h5 class="text-title-large mb-3 font-weight-light my-2">
Take control of your privacy with our end-to-end encrypted SMS
feature. Safeguard your messages from prying eyes, ensuring
absolute confidentiality using the military grade
<a
class="text-decoration-none"
href="https://en.wikipedia.org/wiki/Advanced_Encryption_Standard"
>AES-256 encryption</a
>
algorithm.
</h5>
<VBtn
to="/blog/end-to-end-encryption-to-sms-messages"
color="primary"
>
<VIcon start :icon="mdiLockOutline" />
Setup end-to-end encryption
</VBtn>
</div>
</VCol>
<VCol cols="12" md="6" order-lg="1">
<VImg
class="mb-4"
max-height="300"
:src="'/img/mobile-encryption.svg'"
/>
</VCol>
</VRow>
<!-- Multiple Phones -->
<VRow class="mt-16">
<VCol cols="12" md="6" class="d-flex align-center">
<div>
<h3 class="text-display-medium mb-1">Multiple Phones</h3>
<h5 class="text-title-large mb-3 font-weight-light my-2">
Setup the httpSMS gateway Android app on multiple phones
independently and securely without sharing data under one
account by creating unique phone API keys.
</h5>
<VBtn
href="https://docs.httpsms.com/features/phone-api-keys"
color="primary"
>
<VIcon start :icon="mdiCellphoneKey" />
Documentation
</VBtn>
</div>
</VCol>
<VCol cols="12" md="6">
<VImg
class="mb-4"
max-height="300"
:src="'/img/manage-phones.svg'"
/>
</VCol>
</VRow>
<!-- Schedule Messages -->
<VRow class="mt-16">
<VCol cols="12" md="6" class="d-flex align-center" order-lg="2">
<div>
<h3 class="text-display-medium mb-1">Schedule Text Messages</h3>
<h5 class="text-headline-small my-2 font-weight-light">
Control when your SMS will reach your recipients, allowing you
to perfectly time promotions, critical alerts etc by scheduling
your messages in advance.
</h5>
<VBtn
href="https://docs.httpsms.com/features/scheduling-sms-messages"
color="primary"
>
<VIcon start :icon="mdiClockOutline" />
Documentation
</VBtn>
</div>
</VCol>
<VCol cols="12" md="6" order-lg="1">
<VImg
class="mb-4"
max-height="300"
:src="'/img/schedule-messages.svg'"
/>
</VCol>
</VRow>
</VContainer>
</VSheet>
<!-- Get Started Section -->
<VContainer class="pb-16">
<VRow>
<VCol>
<h2 class="text-display-large text-center mb-0">Get Started</h2>
</VCol>
</VRow>
<VRow>
<VCol cols="12">
<VRow class="align-baseline">
<VCol cols="12" md="5" class="pr-4">
<VTimeline
truncate-line="both"
density="compact"
class="mt-10 ml-n4"
>
<VTimelineItem dot-color="primary" :icon="mdiTallyMark1">
<VCard variant="elevated">
<VCardTitle class="text-headline-medium">Step 1</VCardTitle>
<VCardText class="text-body-large">
<NuxtLink
class="font-weight-bold text-decoration-none"
to="/login"
>
Create an account
</NuxtLink>
on httpsms.com and obtain your API key on the settings
page.
</VCardText>
</VCard>
</VTimelineItem>
<VTimelineItem dot-color="primary" :icon="mdiTallyMark2">
<VCard variant="elevated">
<VCardTitle class="text-headline-medium">Step 2</VCardTitle>
<VCardText class="text-body-large">
<a
download
class="font-weight-bold text-decoration-none"
:href="config.public.appDownloadUrl"
>Download</a
>
and install the companion android application on your
phone and sign in using your API Key.
</VCardText>
</VCard>
</VTimelineItem>
<VTimelineItem dot-color="primary" :icon="mdiTallyMark3">
<VCard variant="elevated">
<VCardTitle class="text-headline-medium">Step 3</VCardTitle>
<VCardText class="text-body-large">
Start sending and receiving SMS messages using our rich
HTTP API. You can find the documentation on
<a
class="text-decoration-none"
:href="config.public.appDocumentationUrl"
>
{{ config.public.appDocumentationUrl }}
</a>
</VCardText>
</VCard>
</VTimelineItem>
</VTimeline>
</VCol>
<VCol cols="12" md="7">
<div class="w-100" :class="{ 'mt-n8': mdAndUp }">
<VTabs
v-model="selectedTab"
color="primary"
bg-color="#212121"
show-arrows
>
<VTab value="javascript">
<VIcon
color="#efd81d"
class="mr-1"
:icon="mdiLanguageJavascript"
/>
Javascript
</VTab>
<VTab value="php">
<VIcon
color="#777bb3"
class="mr-2"
:icon="mdiLanguagePhp"
/>
PHP
</VTab>
<VTab value="python">
<VIcon
color="#ffffff"
class="mr-2"
:icon="mdiLanguagePython"
/>
Python
</VTab>
<VTab value="go">
<VIcon color="#00aed8" class="mr-2" :icon="mdiLanguageGo" />
Go
</VTab>
<VTab value="java">
<VIcon
color="#0c89c7"
class="mr-2"
:icon="mdiLanguageJava"
/>
Java
</VTab>
<VTab value="curl">
<VIcon color="primary" class="mr-2" :icon="mdiPowershell" />
cURL
</VTab>
<VTab value="c-sharp">
<VIcon
color="#68217a"
class="mr-2"
:icon="mdiLanguageCsharp"
/>
C#
</VTab>
</VTabs>
<VTabsWindow v-model="selectedTab" v-highlight>
<VTabsWindowItem value="javascript">
<pre
class="pa-4 bg-surface rounded mt-2"
><code class="language-javascript">import HttpSms from 'httpsms'
const client = new HttpSms('' /* Get the API Key from https://httpsms.com/settings */);
client.messages.postSend({
content: 'This is a sample text message',
from: '+18005550199', // Put the correct phone number here
to: '+18005550100', // Put the correct phone number here
})
.then((message) => {
console.log(message.id); // log the ID of the sent message
})</code></pre>
</VTabsWindowItem>
<VTabsWindowItem value="php">
<pre
class="pa-4 bg-surface rounded mt-2"
><code class="language-php"><?php
$apiKey = "Get API Key from https://httpsms.com/settings";
$options = array(
'http' => array(
'method' => 'POST',
'content' => json_encode( [
'content' => 'This is a sample text message',
'from' => "+18005550199",
'to' => "+18005550100"
]),
'header'=> "Content-Type: application/json\r\n" .
"Accept: application/json\r\n" .
"x-api-key: $apiKey\r\n"
)
);
$context = stream_context_create( $options );
$result = file_get_contents( "https://api.httpsms.com/v1/messages/send", false, $context );
echo $result;</code></pre>
</VTabsWindowItem>
<VTabsWindowItem value="python">
<pre
class="pa-4 bg-surface rounded mt-2"
><code class="language-python">import requests
import json
api_key = "Get API Key from https://httpsms.com/settings"
url = 'https://api.httpsms.com/v1/messages/send'
headers = {
'x-api-key': api_key,
'Accept': 'application/json',
'Content-Type': 'application/json'
}
payload = {
"content": "This is a sample text message",
"from": "+18005550199",
"to": "+18005550100"
}
response = requests.post(url, headers=headers, data=json.dumps(payload))
print(json.dumps(response.json(), indent=4))</code></pre>
</VTabsWindowItem>
<VTabsWindowItem value="go">
<pre
class="pa-4 bg-surface rounded mt-2"
><code class="language-go">import "github.com/NdoleStudio/httpsms-go"
client := htpsms.New(htpsms.WithAPIKey(/* API Key from https://httpsms.com/settings */))
client.Messages.Send(context.Background(), &httpsms.MessageSendParams{
Content: "This is a sample text message",
From: "+18005550199",
To: "+18005550100",
})</code></pre>
</VTabsWindowItem>
<VTabsWindowItem value="java">
<pre
class="pa-4 bg-surface rounded mt-2"
><code class="language-java">var client = HttpClient.newHttpClient();
var apiKey = "Get API Key from https://httpsms.com/settings";
var payload = """
{
"content": "This is a sample text message",
"from": "+18005550199",
"to": "+18005550100"
}
""";
var request = HttpRequest.newBuilder()
.uri(URI.create("https://api.httpsms.com/v1/messages/send"))
.header("accept", "application/json")
.header("Content-Type", "application/json")
.header("x-api-key", apiKey)
.POST(HttpRequest.BodyPublishers.ofString(payload))
.build();
var response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());</code></pre>
</VTabsWindowItem>
<VTabsWindowItem value="curl">
<pre
class="pa-4 bg-surface rounded mt-2"
><code class="language-bash">curl --location --request POST 'https://api.httpsms.com/v1/messages/send' \
--header 'x-api-key: Get API Key from https://httpsms.com/settings' \
--header 'Content-Type: application/json' \
--data-raw '{
"from": "+18005550199",
"to": "+18005550100",
"content": "This is a sample text message"
}'</code></pre>
</VTabsWindowItem>
<VTabsWindowItem value="c-sharp">
<pre
class="pa-4 bg-surface rounded mt-2"
><code class="language-csharp">var client = new HttpClient();
client.DefaultRequestHeaders.Add("x-api-key", ""/* Get API Key from https://httpsms.com/settings */);
var response = await client.PostAsync(
"https://api.httpsms.com/v1/messages/send",
new StringContent(
JsonSerializer.Serialize(new {
from = "+18005550199",
To = "+18005550100",
Content = "This is a sample text message",
}),
Encoding.UTF8,
"application/json"
)
);
Console.WriteLine(await response.Content.ReadAsStringAsync());</code></pre>
</VTabsWindowItem>
</VTabsWindow>
</div>
</VCol>
</VRow>
</VCol>
</VRow>
</VContainer>
<!-- Pricing Section -->
<VSheet class="mt-16 pb-16">
<VContainer>
<VRow>
<VCol md="6" offset-md="3">
<h2
id="pricing"
style="text-decoration-color: #329ef4"
class="text-center text-display-large mb-4 text-decoration-underline dark:text-white"
>
Pricing
</h2>
<h4 class="text-center text-headline-small text-medium-emphasis">
Most of the httpSMS features are completely
<span class="text-primary">free</span> but if you want a little
extra, you can go pro
</h4>
<div class="d-flex justify-center mt-4 align-center">
<p
class="text-headline-small mr-3 mt-3"
:class="{ 'text-medium-emphasis': yearlyPricing }"
>
Monthly
</p>
<VSwitch
v-model="yearlyPricing"
color="primary"
class="mt-n2"
hide-details
/>
<p
class="text-headline-small ml-3 mt-3"
:class="{ 'text-medium-emphasis': !yearlyPricing }"
>
Yearly
<VChip color="primary" size="small">
<VIcon start :icon="mdiGift" size="small" />
2 months free
</VChip>
</p>
</div>
</VCol>
</VRow>
<VRow>
<VCol cols="12">
<VSlider
v-model="pricing"
:tick-labels="lgAndUp ? pricingLabelsFull : pricingLabels"
:max="4"
step="1"
color="primary"
thumb-color="primary"
thumb-label="always"
thumb-size="16"
tick-size="8"
show-ticks="always"
>
<template #thumb-label>
{{ pricingLabels[pricing] }}
</template>
</VSlider>
</VCol>
</VRow>
<VRow>
<!-- Free Plan -->
<VCol cols="12" lg="4">
<VCard elevation="4" color="#121212">
<VCardText>
<h1 class="text-center text-display-medium mt-0 mb-4">Free</h1>
<p
class="text-body-large text-center mt-0 text-medium-emphasis"
>
Try sending and receiving SMS on your hobby websites and
experiments.
</p>
<p class="text-center">
<span class="text-display-small">$0</span>
</p>
<p class="text-center mt-n3 text-medium-emphasis">
No credit card required
</p>
<VBtn block to="/login" variant="tonal" size="large"
>Get Started</VBtn
>
<p class="mt-6 text-md-body-large text-title-medium">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Send or receive up to <b>200</b> SMS/month
</p>
<p class="text-md-body-large text-title-medium mt-n3">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Offline notifications for your phone
</p>
<p class="text-md-body-large text-title-medium mt-n3">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Forward received messages via webhook
</p>
<p class="text-md-body-large text-title-medium mt-n3">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Basic email support
</p>
</VCardText>
</VCard>
</VCol>
<!-- Pro Plan -->
<VCol cols="12" lg="4">
<VCard elevation="4" color="#000000">
<VCardText>
<h1
class="text-center text-display-medium mt-0 mb-4 text-primary"
>
Pro
</h1>
<p
class="text-body-large text-center mt-0 text-medium-emphasis"
>
Send and receive more SMS messages like a pro with advanced
features.
</p>
<p v-if="!yearlyPricing" class="text-center">
<span class="text-display-small">$10</span>/month
</p>
<p v-else class="text-center">
<span class="text-display-small">$100</span>/year
</p>
<p
v-if="!yearlyPricing"
class="text-center mt-n3 text-medium-emphasis"
>
or <b>$100</b> per year
</p>
<p v-else class="text-center mt-n3 text-medium-emphasis">
or <b>$8.33</b> per month
</p>
<VBtn block color="primary" to="/login" size="large"
>Try For Free</VBtn
>
<p class="mt-6 text-md-body-large text-title-medium">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Send or receive up to <b>5,000</b> SMS/month
</p>
<p class="text-md-body-large text-title-medium mt-n3">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Offline notifications for your phone
</p>
<p class="text-md-body-large text-title-medium mt-n3">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Forward received messages via webhook
</p>
<p class="text-md-body-large text-title-medium mt-n3">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Priority support
</p>
</VCardText>
</VCard>
</VCol>
<!-- Custom Plan -->
<VCol cols="12" lg="4">
<VCard elevation="4" color="#121212">
<VCardText>
<h1 class="text-center text-display-medium mt-0 mb-4">
{{ pricingLabels[pricing] }} Plan
</h1>
<p
class="text-body-large text-center mt-0 text-medium-emphasis"
>
Send and receive up to {{ planMessages }} SMS messages like a
power user.
</p>
<p v-if="!yearlyPricing" class="text-center">
<span class="text-display-small">${{ planMonthlyPrice }}</span
>/month
</p>
<p v-else class="text-center">
<span class="text-display-small">${{ planYearlyPrice }}</span
>/year
</p>
<p
v-if="!yearlyPricing"
class="text-center mt-n3 text-medium-emphasis"
>
or <b>${{ planYearlyPrice }}</b> per year
</p>
<p v-else class="text-center mt-n3 text-medium-emphasis">
or <b>${{ planYearlyMonthlyPrice }}</b> per month
</p>
<VBtn block variant="tonal" to="/login" size="large"
>Try For Free</VBtn
>
<p class="mt-6 text-md-body-large text-title-medium">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Send or receive up to
<b>{{ pricingLabels[pricing] }}</b> SMS/month
</p>
<p class="text-md-body-large text-title-medium mt-n3">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Offline notifications for your phone
</p>
<p class="text-md-body-large text-title-medium mt-n3">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Forward received messages via webhook
</p>
<p class="text-md-body-large text-title-medium mt-n3">
<VIcon
color="primary"
class="mt-n1"
start
:icon="mdiCheckCircle"
/>
Priority support
</p>
</VCardText>
</VCard>
</VCol>
</VRow>
<VRow>
<VCol>
<VAlert
color="info"
:icon="mdAndUp ? mdiLightbulbOn60 : undefined"
:prominent="mdAndUp"
variant="tonal"
>
Feel free to <a href="mailto:arnold@httpsms.com">contact us</a> if
you need a bigger plan, or if you want us to install the httpSMS
API on your dedicated server. If you would still like to support
us, please donate via
<a href="https://github.com/sponsors/NdoleStudio"
>GitHub Sponsors</a
>💖
</VAlert>
</VCol>
</VRow>
</VContainer>
</VSheet>
<!-- Testimonials Section -->
<VContainer class="mt-16">
<VRow>
<VCol cols="12" md="6">
<VCard
href="https://www.g2.com/products/httpsms/reviews/httpsms-review-8589834"
>
<VCardText class="pt-0 pb-0">
<div class="d-flex">
<VAvatar class="mt-6">
<VImg
alt="Joysankar M."
src="https://images.g2crowd.com/uploads/avatar/image/1662077/thumb_square_d5706804d1b343744a8feb693827fe34.jpeg"
/>
</VAvatar>
<div>
<p class="text-title-medium ml-3">Joysankar M.</p>
<VRating
class="mt-n7"
color="yellow-darken-3"