Skills
curl --request GET \
--url https://maria-api.vercel.app/api/skillsimport requests
url = "https://maria-api.vercel.app/api/skills"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://maria-api.vercel.app/api/skills', 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://maria-api.vercel.app/api/skills",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://maria-api.vercel.app/api/skills"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://maria-api.vercel.app/api/skills")
.asString();require 'uri'
require 'net/http'
url = URI("https://maria-api.vercel.app/api/skills")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"count": 123,
"data": [
{
"id": "<string>",
"category": "<string>",
"proficiency": "<string>",
"years_experience": 123,
"last_used": "<string>"
}
]
}Skills
See my skills, filterable by proficiency level or category. For the full reference, see the Skills page.
GET
/
api
/
skills
Skills
curl --request GET \
--url https://maria-api.vercel.app/api/skillsimport requests
url = "https://maria-api.vercel.app/api/skills"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://maria-api.vercel.app/api/skills', 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://maria-api.vercel.app/api/skills",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://maria-api.vercel.app/api/skills"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://maria-api.vercel.app/api/skills")
.asString();require 'uri'
require 'net/http'
url = URI("https://maria-api.vercel.app/api/skills")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"count": 123,
"data": [
{
"id": "<string>",
"category": "<string>",
"proficiency": "<string>",
"years_experience": 123,
"last_used": "<string>"
}
]
}Query Parameters
string
Filter by proficiency level. One of:
active, fluent, familiar.string
Filter by category. One of:
development, design, workflows.Response
number
Number of skills returned (after any filtering).
array
⌘I