Skip to main content
POST
/
prices
Create a price
curl --request POST \
  --url https://pay.chargily.net/test/api/v2/prices \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 123,
  "currency": "<string>",
  "product_id": "<string>",
  "metadata": [
    {}
  ]
}
'
import requests

url = "https://pay.chargily.net/test/api/v2/prices"

payload = {
"amount": 123,
"currency": "<string>",
"product_id": "<string>",
"metadata": [{}]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({amount: 123, currency: '<string>', product_id: '<string>', metadata: [{}]})
};

fetch('https://pay.chargily.net/test/api/v2/prices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://pay.chargily.net/test/api/v2/prices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'amount' => 123,
'currency' => '<string>',
'product_id' => '<string>',
'metadata' => [
[

]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://pay.chargily.net/test/api/v2/prices"

payload := strings.NewReader("{\n \"amount\": 123,\n \"currency\": \"<string>\",\n \"product_id\": \"<string>\",\n \"metadata\": [\n {}\n ]\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://pay.chargily.net/test/api/v2/prices")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"amount\": 123,\n \"currency\": \"<string>\",\n \"product_id\": \"<string>\",\n \"metadata\": [\n {}\n ]\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://pay.chargily.net/test/api/v2/prices")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"amount\": 123,\n \"currency\": \"<string>\",\n \"product_id\": \"<string>\",\n \"metadata\": [\n {}\n ]\n}"

response = http.request(request)
puts response.read_body
{
  "id": "01hhy57e5j3xzce7ama8gtk7m0",
  "entity": "price",
  "livemode": false,
  "amount": 200,
  "currency": "dzd",
  "metadata": null,
  "created_at": 1702892910,
  "updated_at": 1702892910,
  "product_id": "01hhy57dnhxf6pq4zcmw7tjnp6"
}

Body parameters

amount
integer
required
The amount to be charged.
currency
string
required
A lowercase ISO currency code. Currently supported currencies are: “dzd”.
product_id
string
required
The ID of the Product.
metadata
array
A Set of key-value pairs that can be used to store additional information about the product.

Returns

If the request is successful, it returns a price object.
{
  "id": "01hhy57e5j3xzce7ama8gtk7m0",
  "entity": "price",
  "livemode": false,
  "amount": 200,
  "currency": "dzd",
  "metadata": null,
  "created_at": 1702892910,
  "updated_at": 1702892910,
  "product_id": "01hhy57dnhxf6pq4zcmw7tjnp6"
}