##api
Le sacche alle zampe sono piene di polline:
un carico pari al 25% dell loro peso.
Quando il nettare di alcuni #fiori fermenta al sole, produce alcol: le #api che lo bevono tornano a casa su di giri; all'ingresso dell'alveare le guardiane gli impediscono di entrare finché non passa la sbronza
February 27, 2026 at 4:27 PM
FLUX 1.1 Pro - Cheapest AI Image Generator Model Via API: ai-art-tutorials.com/flux-1-1-pro...

Here, you can generate Flux 1.1 Pro images from Black Forest Labs at the lowest price!

#flux #ai #art #aiart #api #marketing #generator #tool #pro #script #model
February 22, 2025 at 4:56 PM
#Meta Updates #Marketing #API To Align With Latest #Ad Shifts | Andrew Hutchinson | shorturl.at/Z6myn
June 4, 2026 at 3:07 PM
La dura vita delle api. 🥺
#IncalPerLEtologia
#Api
#Leggerezza
#IanBaker
(Via Pinterest)
March 21, 2026 at 6:20 AM
Yaak agora é open-source, feito em Rust (Tauri) + Typescript é um cliente para REST, GraphQL, Ws etc...

yaak.app

#api #web #bolhadev #bolhatech
Yaak – The most intuitive desktop API client
Organize and execute REST, GraphQL, and gRPC requests in a simple and intuitive app
yaak.app
September 11, 2024 at 10:44 AM
Build REST API for your database in minutes and with "4 lines of code" using .NET Aspire 9 and a couple of Community Toolkit packages! You can use the API via Swagger right away!
#dotnet #sqlserver #azure #aspire #api
November 13, 2024 at 2:43 PM
実は、API料金は地味に工夫で抑えられるんですよね。使わない時は停止、これで結構コストカットできるかも。

Simple API cost-saving: Just turn off unused APIs. It's a small change but can really cut expenses.

#API #コスト削減 #AI自動化 #開発 #DevOps #CostSaving #TechTips #Automation #Bluesky #BuildInPublic
August 6, 2026 at 10:30 PM
Oggi è la Giornata Mondiale delle #Api.
Ricorrenza volta a sensibilizzare l'opinione pubblica sull'importanza degli impollinatori, sulle minacce che affrontano e sul loro contributo allo sviluppo sostenibile.
#giornatamondialedelleapi #WorldBeeDay
May 20, 2025 at 1:44 PM
🌟 How to setup and use the Google Calendar API
#php #laravel #api #google #calendar #PHP
How to setup and use the Google Calendar API
For a project I'm working on I needed to interact with a Google Calendar. If you've ever worked with some API's by Google then you know their documentation can be very confusing. It's not that they don't have documentation, but code examples of common use cases are simply not present. You must wade through a lot of pages to learn basic things such as how to make an authorized request let alone how to fetch calendar events. In this post I'd like to explain in a human readable way how setup and use the Google Calendar API. <a href="/uploads/2016/05/Screen-Shot-2016-05-09-at-19.44.40.jpg"><img class="alignnone size-full wp-image-2673" src="/uploads/2016/05/Screen-Shot-2016-05-09-at-19.44.40.jpg" alt="Screen Shot 2016-05-09 at 19.44.40" width="970" height="568" /></a> <h3>Getting credentials</h3> The first thing you'll need to do is to get some credentials to use Google API's. I'm assuming that you've already created a Google account and are signed in. Head over to<a href="https://console.developers.google.com/apis/library"> Google API's site</a> and click "Select a project" in the header. Choose "Create a new project" in the menu that opens. You can give that project any name you'd like. <a href="/uploads/2016/05/Screen-Shot-2016-05-09-at-18.55.44-1.jpg"><img class="alignnone size-full wp-image-2668" src="/uploads/2016/05/Screen-Shot-2016-05-09-at-18.55.44-1.jpg" alt="Screen Shot 2016-05-09 at 18.55.44" width="2784" height="1816" /></a> Next up we must specify which API's the project may consume. In the list of available API's click "Google Calendar API". On the next screen click "Enable". <a href="/uploads/2016/05/Screen-Shot-2016-05-09-at-18.56.07-1.jpg"><img class="alignnone size-full wp-image-2669" src="/uploads/2016/05/Screen-Shot-2016-05-09-at-18.56.07-1.jpg" alt="Screen Shot 2016-05-09 at 18.56.07" width="2784" height="1816" /></a> Now that you've created a project that has access to the Calendar API it's time to download a file with these credentials. Click "Credentials" in the sidebar. You'll want to create a "Service account key".<a href="/uploads/2016/05/Screen-Shot-2016-05-09-at-18.56.48.jpg"><img class="alignnone size-full wp-image-2661" src="/uploads/2016/05/Screen-Shot-2016-05-09-at-18.56.48.jpg" alt="Screen Shot 2016-05-09 at 18.56.48" width="2784" height="1816" /></a> On the next screen you can give the service account a name. You can name it anything you'd like. In the service account id you'll see an email address. We'll use this email address later on in this guide. Select "JSON" as the key type and click "Create" to download the JSON file. <a href="/uploads/2016/05/Screen-Shot-2016-05-09-at-18.57.18.jpg"><img class="alignnone size-full wp-image-2662" src="/uploads/2016/05/Screen-Shot-2016-05-09-at-18.57.18.jpg" alt="Screen Shot 2016-05-09 at 18.57.18" width="2784" height="1816" /></a> <h3>Setting up the Google Calendar</h3> Now that everything is set up on the API site, we'll need to configure some things on the Google Calendar site. Head over Google Calendar and view the settings of the calendar you want to work with via PHP. On the "Share this Calendar" tab add the service account id that was displayed when creating credentials on the API site. <a href="/uploads/2016/05/Screen-Shot-2016-05-09-at-19.10.52.jpg"><img class="alignnone size-full wp-image-2664" src="/uploads/2016/05/Screen-Shot-2016-05-09-at-19.10.52.jpg" alt="Screen Shot 2016-05-09 at 19.10.52" width="2780" height="1812" /></a> Open up the "Calendar Details" tab to see the id of the calendar. We'll need this id later on. <a href="/uploads/2016/05/Screen-Shot-2016-05-09-at-19.19.10.jpg"><img class="alignnone size-full wp-image-2665" src="/uploads/2016/05/Screen-Shot-2016-05-09-at-19.19.10.jpg" alt="Screen Shot 2016-05-09 at 19.19.10" width="2784" height="1816" /></a> <h3>Accessing the calendar in PHP</h3> Now that everything is set up at Google, let's finally write some PHP. In your project make sure you require `google/apiclient` in your `composer.json`. This piece of code can be used to fetch all events on your calendar: ```php $client = new Google_Client(); // $credentialsJson should contain the path to the json file downloaded from the API site $credentials = $client->loadServiceAccountJson( $credentialJson, 'https://www.googleapis.com/auth/calendar' ); $client->setAssertionCredentials($credentials); $service = new Google_Service_Calendar($client); // $calendarId should contain the calendar id found on the settings page of the calendar $events = $service->events->listEvents($calendarId); ``` In the example above all events will get fetched. Of course the API can do a whole lot more. Take a look at <a href="https://developers.google.com/google-apps/calendar/v3/reference/events">the API docs</a> to learn what's possible. <h3>In closing</h3> Setting up and using the calendar API, and the other Google API's is not that difficult. The key thing that's missing is proper documentation. I hope that in the future Google will add some easy to follow tutorials and practical examples to their docs. It took me about an hour to learn and set everything mentioned in this post. With good documentation the required time would be around 5 minutes (and there would be much less frustration). If you're using Laravel you'll be happy to know that I'm currently developing <a href="https://github.com/spatie/laravel-google-calendar">a package</a> that makes working with a Google Calendar a breeze. My goal is to make this code work: ```php use \Spatie\GoogleCalendar\Event; //creating events $event = new Event(); $event->title = 'My new event' $event->start = Carbon::now(); $event->end = Carbon::now()->addHour(); $event->save(); //fetching all events $allEvents = Event::all(); //updating an event $event = $allEvents->first(); $event->name = 'updated name'; $event->save(); //deleting an event $allEvents->last()->delete(); ``` I'm not planning on supporting all the features of the native API, but if you need only the basic functionality, this will be the package for you.
freek.dev
December 9, 2024 at 8:41 AM
"Integrating Model Context Protocol in AWS Strands Agents" by Elijah Chimera

#api #mcp #mcp-server #mcp-integration #aws-community-builders
Integrating Model Context Protocol in AWS Strands Agents
Chapter 4: MCP Integration (Model Context Protocol)
community.aws
September 23, 2026 at 9:00 PM
Drect - Free URL Shortener

Free custom URL Shortener and branded URLs with advanced links tracking and Link Management Platform & API. Shorten and replace long URL to short link.

drect.net

#web #webmaster #www #developer #webdev #api #shorturl #linkmanagement #affiliate #brandedurl #influancer
September 22, 2026 at 9:01 AM
📝 New post: 'Cracking the LinkedIn API through R'

🧝 Master LinkedIn API in R with my detailed guide on authentication, posting, and overcoming documentation challenges.

👀 drmowinckels.io/blog/2025/li...

#Rstats #linkedin #API #GitHub
Cracking the LinkedIn API through R - Dr. Mowinckel’s
Master LinkedIn API in R with my detailed guide on authentication, posting, and overcoming documentation challenges.
drmowinckels.io
February 1, 2025 at 7:14 PM
GLM AI คืออะไร ทางเลือกใหม่สำหรับสตาร์ทอัพและผู้ใช้งาน ช่วยลดต้นทุน AI โดยไม่ลดทอนคุณภาพ

อ่านต่อ : www.blockdit.com/posts/6ab3e0...

#Charifkub #GLMAi #Ai #LocalAi #Opensource #API #ModelAi #Feed
September 23, 2026 at 2:55 PM
🔗 P2P.org launches the new Babylon Staking API. More APIs mean more fun for developers! #crypto #API
October 11, 2024 at 1:30 PM
🤖 GPT-6 Sol et Luna : OpenAI lance deux nouveaux modèles plus rapides et moins chers

👉 www.justgeek.fr/gpt-6-sol-lu...

#GPT6 #GPT6Sol #GPT6Luna #OpenAI #ChatGPT #Codex #IA #AI #API
GPT-6 Sol et Luna : OpenAI lance deux nouveaux modèles plus rapides et moins chers
GPT-6 Sol et Luna : quelles nouveautés ? Performances, tarifs API, disponibilité dans ChatGPT et Codex… Voici tout ce qu'il faut savoir.
www.justgeek.fr
September 23, 2026 at 8:19 AM
#API | Avis aux utilisateurs des API de l’Insee !
Basé sur une nouvelle architecture, le nouveau portail des API de l’Insee est ouvert depuis septembre 2024.
👉 portail-api.insee.fr
L’ancien portail, resté provisoirement accessible, sera définitivement fermé le 10 septembre 2025.
Loading...
portail-api.insee.fr
July 28, 2025 at 9:11 AM
April 19, 2025 at 8:11 PM
dug up this rather old little #api about exchange rates and practiced adding #swagger documentation to endpoints :]

it was unexpectedly hard to find info how to link the xml summaries to swagger!! so I present you in the 1st pic, .csproj + SwaggerGen options

#buildinpublic #dev #dotnet #aspnetcore
September 23, 2026 at 1:02 AM
This is how easy @itchio.bsky.social (and @gamemaker.io) has made it to integrate version checking in your game. (Thanks guys!) Took me only a few minutes to add this in right before I released the game.

Let me show you! (🧵)

#indiedev #gamedev #indiegame #tips #tricks #gamemaker #itchio #api
January 30, 2025 at 3:17 AM
Iris OnWatch offers three free demo experiences so your product, business, & technical teams can explore identity protection on their own time — before going live.

👉 Explore all three: https://bit.ly/3TTm3NP

#Blog #IrisIDProtect #API #Developers #Demo #InteractiveDemo #Technology
Test It. Build It. Tour It. Try Iris' Experience Options Before You Commit
Explore Iris' free demo experiences for identity protection solutions, so your team can test and build before integrating and committing.
bit.ly
September 24, 2026 at 6:55 PM
📢 rredlist 📦 1.1.0 is now on #CRAN!!!

- wrapper to download multiple assessments ⬇️
- wrapper to extract assessment data from lists of assessments 🐍
- filter latest assessment to a particular scope 🌏

Docs 👉 docs.ropensci.org/rredlist/ind...

#rstats #iucn #redlist #api
IUCN Red List Client
IUCN Red List (<https://api.iucnredlist.org/>) client. The IUCN Red List is a global list of threatened and endangered species. Functions cover all of the Red List API routes. An API key is required.
docs.ropensci.org
July 28, 2025 at 8:19 AM
Bisher musstest du die URL manuell bearbeiten, um API-Service-Accounts nach Namespace zu filtern. Jetzt reicht ein Klick auf ein Dropdown im Cockpit. cockpit.nine.ch/de/customer/... #cockpit #api #nine
September 24, 2026 at 7:30 AM
New RESTful API from Rapid URL Indexer offers complete project management, credit tracking, and automated reports with OpenAPI 3.1 support for seamless developer integration. #API #SEO #WebDev https://rapidurlindexer.com/indexing-api/
September 21, 2026 at 10:04 PM
Such a fair response from open AI. I assume they would just try and rinse me for money but they actually recommend the cheap API option because they know I’m skint. Fair play, thanks Sam

#openai #api #dev #python #machinelearning #ai #react #buildinpublic
December 12, 2024 at 4:07 PM